学习springboot中遇到在controller层中不能使用@RestController注解
解决方案:
在pom.xml文档中缺少以下依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>
学习springboot中遇到在controller层中不能使用@RestController注解
解决方案:
在pom.xml文档中缺少以下依赖:
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency>