Spring BootSpring Boot之两种引入spring boot maven依赖的方式
Posted N!CE波
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring BootSpring Boot之两种引入spring boot maven依赖的方式相关的知识,希望对你有一定的参考价值。
一、方式一:spring-boot-starter-parent
<parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.2.1.RELEASE</version> <relativePath/> <!-- lookup parent from repository --> </parent>
进入spring-boot-starter-parent里,可以发现它其实依赖了我们下面要讲的spring-boot-dependencies模块 。
二、方式二:使用spring-boot-dependencies
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>2.2.1.RELEASE</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
使用这种方式就不用继承父模块,可以解决单继承的问题。这样就可以继承其他父模块,比如自己创建的父模块。
scope=import,type=pom表示在此pom中引入spring-boot-dependencies的pom的所有内容,注意只能在dependencyManagement中使用。
大多数我们可能用到的包依赖和插件依赖都已经在spring-boot-dependencies中定义好了
以上是关于Spring BootSpring Boot之两种引入spring boot maven依赖的方式的主要内容,如果未能解决你的问题,请参考以下文章
spring bootspring boot @ConditionalOnxxx相关注解总结
Spring BootSpring Boot项目部署到外部Tomcat容器
Spring BootSpring Boot之使用 Spring Data Elasticsearch 整合elasticsearch