springboot项目中使用@RestController注解需要引入什么依赖

springboot中controller层不能使用@RestController注解

pom.xml文件中添加依赖

<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-web</artifactId>
</dependency>

猜你喜欢

转载自blog.csdn.net/qq_41936224/article/details/107341986