Springboot打JAR包部署Linux【包含jsp资源,防止jsp404】

打包插件 支持jsp

1.POM.xml配置

 
        
            
            
            
                src/main/webapp
                META-INF/resources
                
                    **/**
                
            
            
            
                src/main/resources
                true
            
        
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

打包操作

1、项目右键----->Run As---->Maven clean
2、项目右键----->Run As---->Maven install
 

部署到Linux

java -jar enterprise_atlas.jar 

 

你可能感兴趣的:(SpringBoot2.0)