There was an unexpected error (type=Not Found, status=404). /WEB-INF/jsp/index.jsp问题解决

SpringBoot集成JSP时遇到如下问题:
There was an unexpected error (type=Not Found, status=404). /WEB-INF/jsp/index.jsp。

项目结构如下:

解决方法:

1、首先确认下maven中是否有如下依赖:

1
2
3
4
5
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>

没有的话,先引入,重新启动,如果问题还没有解决,可以尝试后面的方法。

2、查看项目target目录下是否有自己编写的jsp文件:

如果没有的话,有如下2种方法解决:

2.1 可以修改下配置:Edit Configarations…, 修改Working directory为:$MODULE_WORKIG_DIR$。

2.2 pom中加入bulid配置

1
2
3
4
5
6
7
8
9
10
11
<build>
<resources>
<resource>
<directory>src/main/webapp</directory>
<targetPath>META-INF/resources</targetPath>
<includes>
<include>**/**</include>
</includes>
</resource>
</resources>
</build>

There was an unexpected error (type=Not Found, status=404). /WEB-INF/jsp/index.jsp问题解决
https://river106.cn/posts/b0089eb2.html
作者
river106
发布于
2021年1月17日
许可协议