注释类型RequestMapping的属性路径未定义

时间:2017-04-05 10:59:15

标签: path annotations attributes mapping

在编译时,我收到错误

  

注释类型的属性路径未定义   RequestMapping

我已导入org.springframework.web.bind.annotation.PathVariable,但我仍面临同样的问题。

1 个答案:

答案 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>