There was an unexpected error (type=Not Found, status=404). /WEB-INF/jsp/abc.jsp解决方案

  1. 可以参考以下链接
    https://blog.csdn.net/qq_23184291/article/details/78402152
  2. 若出来Maven-Plugins下不存在spring-boot的情况,如下图
    不存在spring-boot
    打开pom.xml文件,添加如下代码
<plugin>
	<groupId>org.springframework.boot</groupId>
  	<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
<plugin>
	<groupId>org.apache.maven.plugins</groupId>
	<artifactId>maven-surefire-plugin</artifactId>
	<version>2.21.0</version>
	<configuration>
		<skipTests>true</skipTests>
	</configuration>
</plugin>

在这里插入图片描述
等编译完成后便可以使用spring-boot
3. 若出现编译错误,则直接编译父项目
在这里插入图片描述

猜你喜欢

转载自blog.csdn.net/qq_25598453/article/details/84675632