使用spring boot的两种方法:
A:继承spring-boot-starter-parent项目
这种方式很简单,只需要在POM里面添加parent父工程即可。
B: 如果你不喜欢继承spring-boot-starter-parent POM的方式,需要使用公司的标准parent(而parent只能有一个),
或者比较倾向显示声明所有Maven配置。你可以使用一个scope=import导入的方式使用Spring Boot
<dependencyManagement> <dependencies> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-dependencies</artifactId> <version>1.3.0.M5</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement>
原文地址:https://www.cnblogs.com/liufei1983/p/9249088.html
时间: 2024-10-06 17:34:15