gpt4 book ai didi

java - 如何自定义 Spring Data REST 以对存储库资源使用多段路径?

转载 作者:IT老高 更新时间:2023-10-28 13:46:18 32 4
gpt4 key购买 nike

我正在使用 Spring Data JPA 和 Spring Data REST 开发一个基于组件的 CRUD 应用程序。我有几个组件。例如 system 组件具有 User型号和 UserRepository .组件由包名称区分。喜欢 com.example.app.<component_name>

所以为了让我的 REST API 看起来更干净,我需要实现 API URL,如下所示。

host:8080/<component_name>/<model_collection_name>

例如

host:8080/system/users

我在我的存储库中做了以下操作

@RepositoryRestResource(collectionResourceRel = "users", path = "system/users")
public interface UserRepository extends PagingAndSortingRepository<User, Long> {
...
}

当我转到 http://localhost:8080 时,这会生成以下内容

{
"_links": {
"users": {
"href": "http://localhost:8080/system/users{?page,size,sort}",
"templated": true
},
...

但是当我转到 http://localhost:8080/system/users

报错

Fri May 22 17:56:37 IST 2015 There was an unexpected error (type=Not Found, status=404). No message available

注意:如果我将路径映射到 system-users然后它工作正常,但是当我使用 /system/users 等路径中,它会中断并给出错误。

最佳答案

tl;博士

不支持。

详情

一般来说:不要专注于设计网址。根据定义,URI 的结构与 REST 客户端无关:

At no time whatsoever do the server or client software need to know or understand the meaning of a URI -- they merely act as a conduit through which the creator of a resource (a human naming authority) can associate representations with the semantics identified by the URI.

(来自 Roy Fielding - 建筑风格和基于网络的软件架构设计 - Section 6.2.4 )

如果您遵循该标准,您将负责选择关系名称、为您公开的资源设计表示等。

也就是说,目前不支持您要查找的内容。如果您认为值得添加此功能(由于上面给出的论点,我认为不值得),请随时在我们的 bug tracker 中开票。 .

由于 Spring MVC 映射的工作方式,特别是奇异路径段和非奇异路径段的映射组合可能会导致一些歧义,因此实现起来可能相当棘手。所有这些都使得该请求不太可能得到跟进。

关于java - 如何自定义 Spring Data REST 以对存储库资源使用多段路径?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30396953/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com