SpringBoot填坑/WEB-INF/xxx.jsp not found
程序员文章站
2022-07-13 13:43:04
...
写在前面
第一次接触SpringBoot的时候,也是因为整合视图层jsp的时候怎么都是访问不了。现在是第二次接触,我觉得有必要记录一下。
如果出现访问jsp文件访问不了的问题。首先检查自己的pom.xml是否缺少依赖。
一般的依赖为:
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>provided</scope>
</dependency>
依赖不缺少的话,检查自己的路径是否写对:
server.port=9999
spring.mvc.view.prefix=/WEB-INF/page/
spring.mvc.view.suffix=.jsp
路径也是正确的话,但是启动就是怎么都不能访问到,输入url可以触发控制器处理,甚至控制器里面的输出语句都能够输出在控制台。
此时只能够依靠maven的插件方式来启动了具体如下:
写在后面
具体解决还要看以后出现的问题。
推荐阅读
-
Ubuntu18.04 ROS填坑之 roscore Command ‘roscore‘ not found, ..... : sudo apt install python-roslaunch
-
idea:springboot整合jsp出现的错误:There was an unexpected error (type=Not Found, status=404). /WEB-INF/jsp。。
-
SpringBoot填坑/WEB-INF/xxx.jsp not found
-
springboot中unexpected error (type=Not Found, status=404)/WEB-INF/upload.jsp和No message available解决方案
-
SpringBoot踩坑记录:@Cacheable报错EL1007E: Property or field 'code' cannot be found on null
-
小白踩坑记:springboot运行一直报错:There was an unexpected error (type=Not Found, status=404).