java - 如何将 Spring Boot @RepositoryRestResource 映射到特定的 url?

标签 java spring configuration spring-data spring-boot

我似乎无法将我的存储库映射到以下位置以外的任何位置:

@RepositoryRestResource(collectionResourceRel = "item", path = "item")
public interface ItemRepository extends PagingAndSortingRepository<Item, Long> {

我认为我可以使用:

 path = "/some/other/path/item"

但映射无法解析。我明白了:

HTTP ERROR 404

Problem accessing /some/other/path/item. Reason:

Not Found

在spring-data javadoc path中定义为:"The path segment under which this resource is to be exported."

我做错了什么?

最佳答案

要更改基本 URI,您也可以将其添加到 application.properties:

spring.data.rest.base-path=/my/base/uri

关于java - 如何将 Spring Boot @RepositoryRestResource 映射到特定的 url?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24577400/

相关文章:

configuration - 在另一个项目中添加Slow Cheetah 转换的配置文件作为引用

java - Java如何处理多线程中的Errors?

java - 我可以在同一个输出流上同时使用 PrintWriter 和 BufferedOutputStream 吗?

java - 王牌 :chart how to set xAxis tick with AxisType:DATE

java - 编织一个没有接口(interface)和非公共(public)方法的类时关于理解Spring AOP的问题

java - 为什么 @Autowired(required=false) 不适用于 @Configuration bean?

java - 使用fts转义Hibernate选择查询中的特殊字符

找不到 spring-boot-devtools maven jar

java - 在 Spring MVC 中有条件地渲染 HTML

php - 创建ini文件,在PHP中写入值