背景
以前老项目迁成springboot项目,里面有jsp页面,但是在打成jar包后,使用java -jar xxx.jar 发现并不能访问jsp页面,但其他接口能正常使用。ps:项目如果是直接从启动类main方法启动是可以访问。
存在问题
一、jar包未含jsp文件
旧spring mvc项目 jsp 放在webapp目录下,spring-boot-maven-plugin 打包默认是不含该目录的,应在pon文件<build>里指将jsp页面目录加入 <resource>。
二、包含jsp文件仍访问不了
需要把spring-boot-maven-plugin 版本改为 1.4.2.RELEASE,其它版本的都不可以。
详细方案
1)检查 pom 文件是否添加已对 jsp 页面的依赖:
<!-- tomcat JSP 的支持.-->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
</dependency>
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<scope>compile</scope>
</dependency>
2)对jar包进行解压,进入解压目录查看是否有jsp页面,命令如下:
unzip xxx.jar
如果发现目录下没有jsp页面,则需要在pon文件<build>里指将jsp页面目录加入到 <resource>。
3)指定 spring-boot-maven-plugin 版本为 1.4.2.RELEASE,其它版本的都不可以,具体原因不详,据说是个bug。
设置 targetPath 只能是 META-INF/resources。然后用这个版本最好指定一下启动类main函数<mainClass>,否则当你项目里面存在多个main方法就会报错不知道用哪个。
<!-- jsp加入resources,指定插件版本-->
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>1.4.2.RELEASE</version>
<configuration>
<mainClass>com.xxx.xxx.SpringbootApplication</mainClass>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/webapp</directory>
<targetPath>META-INF/resources</targetPath>
<includes>
<include>**/**</include>
</includes>
</resource>
</resources>
</build>
4)在配置文件中加入前缀、后缀,这样项目启动就能正常访问到 jsp 页面了,此处项目目录为:
spring:
mvc:
servlet:
load-on-startup: 1
view:
suffix: .jsp
prefix: /WEB-INF/views/
ps:本地开发修改页面实时生效的配置:
server:
port: 8181
servlet:
jsp:
init-parameters:
development: true