问题描述
我正在使用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 (将#修改为@)