如何添加spring-boot-starter-web和spring-boot-starter-test这两个依赖。
时间: 2023-05-23 12:01:29 浏览: 345
spring-boot-starter-test-2.2.13.RELEASE.jar
要添加 spring-boot-starter-web 和 spring-boot-starter-test 这两个依赖,可以在 Maven 或 Gradle 的配置文件中以如下方式声明:
Maven:
```
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
```
Gradle:
```
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
}
```
这样就可以在项目中使用 Spring Boot Web 和测试相关功能了。
阅读全文