spring boot 使用 maven 打jar包

使用 ide 进行开发时,直接在ide上启动即可,如果要放到服务器上进行使用,就必须打成jar包,这里使用 maven 的打包插件进行打包。注意 com.devops.WebApplication 这行要改成你的启动类。


        devops-web
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
            
                org.apache.maven.plugins
                maven-compiler-plugin
                
                    1.8
                    1.8
                    UTF-8
                
            
            
                org.apache.maven.plugins
                maven-jar-plugin
                
                    
                        
                            true
                            lib
                            com.devops.WebApplication
                        
                        true
                    
                
            
        
    

你可能感兴趣的:(spring boot 使用 maven 打jar包)