“Spring Boot 依赖管理特性”的版本间的差异
跳到导航
跳到搜索
Jihongchang(讨论 | 贡献) (建立内容为“https://www.bilibili.com/video/BV19K4y1L7MT/?p=6”的新页面) |
Jihongchang(讨论 | 贡献) |
||
第1行: | 第1行: | ||
https://www.bilibili.com/video/BV19K4y1L7MT/?p=6 | https://www.bilibili.com/video/BV19K4y1L7MT/?p=6 | ||
+ | |||
+ | === 父项目做依赖管理 === | ||
+ | <syntaxhighlight lang="xml"> | ||
+ | <parent> | ||
+ | <groupId>org.springframework.boot</groupId> | ||
+ | <artifactId>spring-boot-starter-parent</artifactId> | ||
+ | <version>2.3.4.RELEASE</version> | ||
+ | </parent> | ||
+ | </syntaxhighlight> |
2023年2月1日 (三) 06:49的版本
https://www.bilibili.com/video/BV19K4y1L7MT/?p=6
父项目做依赖管理
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>2.3.4.RELEASE</version>
</parent>