springboot打包成jar无法访问jsp页面的解决方法

springboot打包成jar,无法访问jsp 页面的解决方法:

  • 将maven打包插件的版本改为1.4.2
      
        org.springframework.boot
        spring-boot-maven-plugin
        1.4.2.RELEASE
      
  • 配置 < resources>将webapp打包进target/classes 目录,其中< targetPath>META-INF/resources 指定将webapp打包到target/classes 目录的META-INF/resources 目录下,必须这样配置,否则会出错
  
    
      src/main/webapp
      META-INF/resources
    
    
      src/main/resources
    
  

你可能感兴趣的:(springboot)