@RequestController的pom依赖
时间: 2023-08-20 14:03:56 浏览: 146
pom.xml依赖配置
5星 · 资源好评率100%
在使用 `@RequestController` 注解时,你需要在项目的 `pom.xml` 文件中添加相应的依赖。下面是一个示例的 `pom.xml` 文件片段,其中包含了常用的 Spring Web 相关依赖:
```xml
<dependencies>
<!-- Spring Web MVC -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
<!-- Spring Boot DevTools(可选,用于开发环境) -->
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<optional>true</optional>
</dependency>
<!-- 其他依赖... -->
</dependencies>
```
请确保将这些依赖添加到你的项目中,并根据需要进行调整。然后,使用 Maven 或 Gradle 等构建工具重新构建你的项目,以使依赖生效。这样,你就可以在 `@RequestController` 中使用了。
阅读全文