我使用@RepositoryRestResource
通过@Entity
快速公开spring-data-rest
个对象。
问题:是否可以停用_links
响应中的所有self
href
json
个链接?
"_links" : {
"self" : {
"href" : "http://localhost:8080/people{?page,size,sort}",
"templated" : true
},
"search" : {
"href" : "http://localhost:8080/people/search"
}
},
"_embedded" : {
"persons" : [ {
[...]