在编译时,我收到错误
注释类型的属性路径未定义 RequestMapping
我已导入org.springframework.web.bind.annotation.PathVariable
,但我仍面临同样的问题。
答案 0 :(得分:0)
在pom.xml中检查spring-web的依赖版本。我通过更改版本依赖性来解决它。以前是4.1.4.RELEASE。
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>4.2.7.RELEASE</version>
</dependency>