spring-boot-dependencies和spring-boot-starter-parent

狄灵均
2023-12-01

大家有時候不明白爲什麽有時候继承的是spring-boot-starter-parent,但是在一些企业中看到继承的是spring-boot-dependencies,小G今天也研究下,我打开spring-boot-starter-parent,看看到里面是:
spring-boot-starter-parent 如下:

 <parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-dependencies</artifactId>
    <version>2.2.1.RELEASE</version>
    <relativePath>../../spring-boot-dependencies</relativePath>
  </parent>
  <artifactId>spring-boot-starter-parent</artifactId>
  <packaging>pom</packaging>
  <name>Spring Boot Starter Parent</name>
  <description>Parent pom providing dependency and plugin management for applications
		built with Maven</description>
  <url>https://projects.spring.io/spring-boot/#/spring-boot-starter-parent</url>

可以看到其实spring-boot-starter-parent上层还有一个depedencies,其实在企业中有自己的依赖可以自己在定义一个spring-boot-starter-parent,然后让其他依赖这个,这样可以更好的控制依赖

 类似资料: