@RestController注解报错
如果出现@RestController注解不能识别爆红的情况,原因是怕pom文件中没有添加web的依赖。<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-web</artifactId></dependency
·
如果出现@RestController注解不能识别爆红的情况,原因是pom文件中没有添加web的依赖。
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
如果添加了web依赖还是报错的情况,可能是没有指定版本号,所以maven不能识别
解决的办法是进入pom.xml文件中点击这个位置,找到对应有版本号的dependency,替换原来的依赖再次导入。
更多推荐
已为社区贡献3条内容
所有评论(0)