springboot 多模块项目

比起传统复杂的单体工程,使用Maven的多模块配置,可以帮助项目划分模块,鼓励重用,防止POM变得过于庞大,方便某个模块的构建,而不用每次都构建整个项目,并且使得针对某个模块的特殊控制更为方便。

新建父模块的pom.xml

创建聚合父工程
首先使用 Spring Initializr 来快速创建好一个Maven工程。然后删除无关的文件,只需保留pom.xml 文件。

  • new Project -> spring initializr快速构建SpringBoot,artifactId为springbootmodules
  • 因为父模块只是为了组织子模块用,删除src等没用的文件,删除pom.xml中maven依赖等信息。
  • 父模块打包类型packaging从jar调整为pom
  • 添加两个module:provider和consumer

 
        provider
        consumer
    

新建子模块:

  • 1.对着父工程右键 - New - Module - > 输入 provider
  • 2.对着父工程右键 - New - Module - > 输入 consumer
  • 完成后,分别调整它们的pom.xml 以继承上面的父工程。

new Module - > spring initializr,分别新增artifactId为provider和consumer,放在springbootmodules目录之下: 

springboot 多模块项目_第1张图片

springboot 多模块项目_第2张图片

调整pom.xml

父pom.xml现在只有管理两个子模块的作用,可以抽取子模块统一的配置信息和依赖版本控制放父模块中管理。



    4.0.0


    com.xd
    springbootmodules
    0.0.1-SNAPSHOT
    pom


 
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.1.RELEASE
         
    



    
        provider
        consumer
    

    
        UTF-8
        UTF-8
        1.8
    

    

 
    
        
            
                com.hehe
                mm-web
                0.0.1-SNAPSHOT
            
            
                com.hehe
                mm-service
                0.0.1-SNAPSHOT
            
            
                com.hehe
                mm-repo
                0.0.1-SNAPSHOT
            
            
                com.hehe
                mm-entity
                0.0.1-SNAPSHOT
            
        
    

    

新版idea创建后


       
            org.springframework.boot
            spring-boot-starter-web
       

       
            org.springframework.boot
            spring-boot-starter-test
            test
       

   

老版本idea

 
   
        org.springframework.boot
        spring-boot-starter-parent
        2.1.1.RELEASE
       
   

子模块pom.xml,设置parent为springbootmodules:



    4.0.0

    com.xd
    provider
    0.0.1-SNAPSHOT
    jar

    provider
    Demo project for Spring Boot

    
        
        
        
        
        com.xd
        springbootmodules
        0.0.1-SNAPSHOT
    

    
        
        
        
    

    
        
            
            
        

        
            
            
            
        
    

    
        

            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    

其他模块都继承父模块,这里需要注意:由于我们把其他模块的启动类删了,父模块的spring-boot-maven-plugin插件也需要删掉,然后添加到需要的模块中去,因为springboot这个插件必须要启动类,否则则会出现错误:

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