“Starters”的版本间的差异
跳到导航
跳到搜索
Jihongchang(讨论 | 贡献) (建立内容为“{| class="wikitable" !artifactId !描述 |- |<syntaxhighlight lang="xml"> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</arti…”的新页面) |
Jihongchang(讨论 | 贡献) |
||
| 第14行: | 第14行: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
|spring-boot-starter核心包 | |spring-boot-starter核心包 | ||
| + | |- | ||
| + | |<syntaxhighlight lang="xml"> | ||
| + | <groupId>org.springframework.boot</groupId> | ||
| + | <artifactId>spring-boot-starter-web</artifactId> | ||
| + | </syntaxhighlight> | ||
| + | |web 容器 | ||
|} | |} | ||
2023年1月31日 (二) 02:32的版本
| artifactId | 描述 |
|---|---|
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
|
spring-boot父pom,继承 spring-boot-dependencies,引入依赖 |
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
|
spring-boot-starter核心包 |
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
|
web 容器 |