RestController需要加什么依赖
时间: 2023-07-22 07:03:53 浏览: 69
基于maven的springMVC@RestController的使用
在Spring Boot框架中,使用`@RestController`注解创建一个RESTful Web服务需要加入以下依赖:
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
```
这个依赖包含了Spring MVC和Tomcat的依赖,所以在使用`@RestController`时无需再添加其他依赖。
阅读全文