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>
原文地址:https://www.cnblogs.com/Tpf386/p/11046757.html
时间: 2024-10-09 21:57:26