如何解决如何自定义Spring Data REST以对存储库资源使用自定义路径?
我正在使用SPRING DATA REST开发微服务,在这里我需要将子资源仅可通过以下结构的主要资源进行访问:
http://localhost:8080/posts
http://localhost:8080/posts/1/comments
并阻止直接访问子资源,例如http://localhost:8080/comments/*
。
只能通过相关的poste访问评论,我在存储库中执行了以下操作:
@RepositoryRestResource(collectionResourceRel = "posts",path = "posts")
public interface PostRepository extends PagingAndSortingRepository<Post,Long> {
...
}
发表评论:
@RepositoryRestResource(collectionResourceRel = "comments",path = "comments")
public interface CommentRepository extends PagingAndSortingRepository<Comment,Long> {
...
}
现在默认情况下,当我转到以下位置时,SPRING DATA REST返回以下结果:http://localhost:8080
{
"id": 1,"content": "some post text .........................","author":"abc","_links": {
"self": {
"href": "http://localhost:8080/posts/1"
},"attributes": {
"href": "http://localhost:8080/posts/1/comments"
}
}
}
现在,如果我要发表评论,我需要执行以下操作:
http://{server:port}/comment METHOD:POST
{"author":"abc","content":"PQROHSFHFSHOFSHOSF","post":"http://{server:port}/post/1"}
但是我需要实现的是发布到这样的网址http://{server:port}/posts/1/comment
,其中 POST 是根资源 不需要就像先前的路径http://{server:port}/comment
http://{server:port}/posts/1/comment METHOD:POST
{"author":"abc","post":"http://{server:port}/post/1"}
现在,如果创建自定义注释 @controller
是可行的,但是我想使用SPRING DATA REST和Hateoas支持的已构建功能。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。