spring boot 可执行JAR打包JSP不可执行问题

spring boot 打包插件 存在bug 导致打包可执行JAR包后无法访问到JSP页面,目前只有 1.4.2可以正常打包,遇到发布成可执行jar包后无法访问时,先确认打包插件的版本

<plugin>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-maven-plugin</artifactId>

      <!--版本-->
      <version>1.4.2.RELEASE</version>

</plugin>

 

参考:https://blog.csdn.net/chichuhanga/article/details/78716027

猜你喜欢

转载自aftertoday.iteye.com/blog/2422196