springboot多模块开发

 父pom

    4.0.0
    pom
    
        web
        common
    
    org.父项目名
    父项目名
    1.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.3.12.RELEASE
        
    
    
        
            
                org.apache.maven.plugins
                maven-surefire-plugin
                2.22.2
                
                    true
                
            
        
        
        
            
                src/main/resources
                
                    **/**
                
            
        
    

公共模块 common

    
        父项目名
        org.父项目名
        1.0
        pom.xml
    
    4.0.0

    common

    
        
            
            
                org.apache.maven.plugins
                maven-resources-plugin
                
                    UTF-8
                
            
        
    

web启动模块

    
        父项目名
        org.父项目名
        1.0
        pom.xml
    
    4.0.0
    项目名-web
    
        
            
                org.archives
                common
                1.0
            
        
    
    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
                
                
                    
                        
                            repackage
                        
                    
                
                
                    org.项目名.XXXApplication
                    
                        
                            org.projectlombok
                            lombok
                        
                    
                    true
                    true
                
            
        
    

你可能感兴趣的:(spring,boot,java,spring)