Spring Boot 不使用默认的 parent

Spring Boot 不使用默认的 parent

spring boot官方示例中,需要让我们继承一个spring的 spring-boot-starter-parent 这个parent:

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

但是在自己的项目里,有时已经存在parent了,所以可以采取如下变通方法:


    
        
            org.springframework.boot
            spring-boot-dependencies
            2.0.4.RELEASE
            pom
            import
        
    

参考:
Spring Boot官方文档中的 13.2.2 Using Spring Boot without the Parent POM。
(https://docs.spring.io/spring-boot/docs/2.0.4.RELEASE/reference/htmlsingle/ )

你可能感兴趣的:(实用小技巧)