springboot配置对jsp页面的解析支持
Posted tpf386
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot配置对jsp页面的解析支持相关的知识,希望对你有一定的参考价值。
pom.xml文件配置依赖信息
<!--SpringBoot项目内嵌tomcat对jsp的解析包--> <dependency> <groupId>org.apache.tomcat.embed</groupId> <artifactId>tomcat-embed-jasper</artifactId> </dependency>
还有一些可选包
<!-- servlet依赖的jar包start ,可选--> <dependency> <groupId>javax.servlet</groupId> <artifactId>javax.servlet-api</artifactId> </dependency> <!-- servlet依赖的jar包start --> <!-- jsp依赖jar包start ,可选--> <dependency> <groupId>javax.servlet.jsp</groupId> <artifactId>javax.servlet.jsp-api</artifactId> <version>2.3.1</version> </dependency> <!-- jsp依赖jar包end --> <!--jstl标签依赖的jar包start ,可选--> <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency> <!--jstl标签依赖的jar包end -->
SpringBoot要求jsp文件必须编译到指定的META-INF/resources目录下才能访问,否则访问不到。
<resources> <resource> <!--源文件位置--> <directory>src/main/webapp</directory> <!--编译到META-INF/resources,该目录不能随便写--> <targetPath>META-INF/resources</targetPath> <includes> <!--要把哪些文件编译过去,**表示webapp目录及子目录,*.*表示所有--> <include>**/*.*</include> </includes> </resource> </resources>
以上是关于springboot配置对jsp页面的解析支持的主要内容,如果未能解决你的问题,请参考以下文章