We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f89a458 commit d130d61Copy full SHA for d130d61
spring-data-rest-webmvc/src/main/java/org/springframework/data/rest/webmvc/RepositoryRestController.java
@@ -56,7 +56,7 @@
56
* @since 3.7.2
57
* @see #path()
58
*/
59
- @AliasFor("path")
+ @AliasFor(attribute = "value", annotation = BasePathAwareController.class)
60
String[] value() default {};
61
62
/**
@@ -66,6 +66,6 @@
66
67
* @see #value()
68
69
- @AliasFor("value")
+ @AliasFor(attribute = "path", annotation = BasePathAwareController.class)
70
String[] path() default {};
71
}
0 commit comments