1)父类型
SpirngBoot-jar两种引入方式

	<parent>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-parent</artifactId>
		<version>2.1.3.RELEASE</version>
		<relativePath/> <!-- lookup parent from repository -->
	</parent>

2)非jar单独引用型
SpirngBoot-jar两种引入方式

<dependencyManagement>
		<dependencies>
			<dependency>
				<groupId>org.springframework.boot</groupId>
				<artifactId>spring-boot-dependencies</artifactId>
				<version>2.1.1.RELEASE</version>
				<type>pom</type>
				<scope>import</scope>
			</dependency>
		</dependencies>
	</dependencyManagement>

相关文章:

  • 2022-01-07
  • 2021-11-13
  • 2021-12-01
  • 2021-12-09
  • 2021-12-26
  • 2021-12-28
猜你喜欢
  • 2021-11-27
  • 2021-12-15
  • 2021-12-05
  • 2022-01-18
  • 2021-11-22
  • 2021-11-30
相关资源
相似解决方案