spring boot整合jsp的时候访问页面错误日志:Path with "WEB-INF" or "META-INF":

  • 作者: 凯哥Java(公众号:凯哥Java)
  • 经验分享
  • 时间:2019-06-04 22:37
  • 3731人已阅读
简介 虽然springboot官方不推荐使用jsp.然后凯哥qianqian的,想整合jsp。在整合过程中遇到了错误:在访问页面的时候:页面错误:日志错误: Pathwith"WEB-INF"or"META-INF":[WEB-INF/jsp/welcome.jsp]问题解决:因为springboot不推荐使用jsp。如果我们非要使用jsp作为页面。那么

🔔🔔🔔好消息!好消息!🔔🔔🔔

有需要的朋友👉:联系凯哥 微信号 kaigejava2022

虽然spring boot 官方不推荐使用jsp.然后凯哥qianqian的,想整合jsp。在整合过程中遇到了错误:

在访问页面的时候:

页面错误:

08c47d98e93d14b4e6037ae3721f9c23.png

日志错误:

e974de94b31c2fac2ffcc7477d9aee13.png Path with "WEB-INF" or "META-INF": [WEB-INF/jsp/welcome.jsp]

问题解决:

因为spring boot 不推荐使用jsp。如果我们非要使用jsp作为页面。那么我们就需要添加jsp依赖。

在pom.xml文件中,添加对jsp的支持依赖包:

d49b3ce9351790d303fc94d6fa63109c.png

<!-- jsp支持 start -->
<dependency>
   <groupId>javax.servlet</groupId>
   <artifactId>jstl</artifactId>
</dependency>
<dependency>
   <groupId>org.apache.tomcat.embed</groupId>
   <artifactId>tomcat-embed-jasper</artifactId>
   <version>8.5.20</version>
</dependency>
<!-- jsp支持 end -->

有些朋友会问,为什么非要添加这两个依赖呢?

这两个是参考spring boot 官方给出的simple-jsp的demo

官方git中demo如下图:

82965f79c5dc956cfcf810112e491a6f.png

注:

这里要注意,只能是打成war包在非嵌套的tomcat容器才能看到效果,直接在嵌套的tomcat容器是看不到效果的,因为不支持,例如在IDE直接右键run main函数或者打成可执行的jar包都不行。

如果先要使用多视图解析的话

例外,如果出现freemarker模版引擎和jsp技术同时存在的话,springmvc会根据解析器的优先级来返回具体的视图,默认,FreeMarkerViewResolver的优先级大于InternalResourceViewResolver的优先级,所以同时存在的话,会返回freemarker视图


TopTop