spring-boot-starter 依赖写法
时间: 2023-07-17 08:11:15 浏览: 110
springboot常见的依赖。非常使用,直接导入。
Spring Boot提供了许多常用的起步依赖,可以简化项目的配置和构建过程。下面是添加spring-boot-starter-web依赖的常见写法:
Maven:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
<version>2.5.5</version>
</dependency>
```
Gradle:
```groovy
implementation 'org.springframework.boot:spring-boot-starter-web:2.5.5'
```
请注意,这只是添加spring-boot-starter-web依赖的示例,实际的版本号可能会有所不同。你可以根据自己的需求选择适合的Spring Boot起步依赖,并将其添加到你的项目中。
阅读全文