创建springboot的聚合工程(一)

 

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

第一步:创建父工程

使用spring Tool Suite的童鞋可以直接new一个spring starter project;使用idea和eclipse童鞋可以通过插件使用 Spring Initializr ,快速创建springboot工程;

创建springboot的聚合工程(一)_第1张图片

 


创建springboot的聚合工程(一)_第2张图片然后去掉,无关紧要的东西留下pom文件就好了,这样父工程就创建好了;

 

 

 

第二步:给父工程添加pom文件配置:

 



    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

    
    SpringBoot 多模块构建示例
    4.0.0
    boot-polymer
    pom

    
    com.polymer
    boot-polymer
    1.0.0.RELEASE

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

    
    
        boot-polymer-web
        boot-polymer-service
        boot-polymer-repository
        boot-polymer-entity
        boot-polymer-common
    

    
        1.8
    

    
        
            
                com.polymerization
                boot-polymer-web
                1.0.0.RELEASE
            
            
                com.polymerization
                boot-polymer-service
                1.0.0.RELEASE
            
            
                com.polymerization
                boot-polymer-repository
                1.0.0.RELEASE
            
            
                com.polymerization
                boot-polymer-entity
                1.0.0.RELEASE
            
            
                com.polymerization
                boot-polymer-common
                1.0.0.RELEASE
            
        
    


 

 

 

第三步;创建子工程

右击父工程->new ->maven module->创建选择jar->全部创建jar包工程,别创建war包否则你就别用springboot,不要问为什么

创建springboot的聚合工程(一)_第3张图片

 

第四步:测试工程是否能启动

首先在boot-polymer-web工程添加pom配置


    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    4.0.0
    
        com.polymer
        boot-polymer
        1.0.0.RELEASE
    
    boot-polymer-web

    
        
            com.polymer
            boot-polymer-service
        
        
            com.polymer
            boot-polymer-repository
        
        
            com.polymer
            boot-polymer-entity
        
        
            com.polymer
            boot-polymer-common
        
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

然后再web项目下新建一个启动类:

创建springboot的聚合工程(一)_第4张图片

 

package com.polymer.app;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;



@RestController
@SpringBootApplication //Spring Boot核心注解,用于开启自动配置
public class StartApplication {
//程序可以直接在此启动
    @RequestMapping("/")
    String index(){
      return "ok";
    }
  
    public static void main(String[] args) {
        SpringApplication.run(StartApplication.class, args);
    }
    
    public void addResourceHandlers(ResourceHandlerRegistry registry) {
        //配置静态资源处理
        registry.addResourceHandler("/**")
        .addResourceLocations("classpath:/META-INF/")
        .addResourceLocations("classpath:/hospitalpay");
    }
}

 然后run  as application——》

创建springboot的聚合工程(一)_第5张图片

看到这个就表示启动成功了;然后再去访问一下

创建springboot的聚合工程(一)_第6张图片

成功了;

 

 

 

 

转载于:https://www.cnblogs.com/zyf-yxm/p/10319727.html

你可能感兴趣的:(java,开发工具)