导入 spring-boot-starter-parent2.6.2
时间: 2023-08-24 20:06:12 浏览: 159
spring-boot-admin-server-ui-2.6.2-API文档-中英对照版.zip
5星 · 资源好评率100%
在 Maven 项目中,可以通过以下方式导入 `spring-boot-starter-parent` 2.6.2:
```xml
<project>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.6.2</version>
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>com.example</groupId>
<artifactId>myproject</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>myproject</name>
<description>My Project</description>
<!-- other dependencies and configuration -->
</project>
```
这样就会使用 `spring-boot-starter-parent` 2.6.2 作为父项目,并继承其默认的依赖版本和配置。
阅读全文