使用带有 @RestRepositoryResource 批注的 JPARepository 时,我得到以下资源:
{
...
"_links": {
"self": {
"href": "https://localhost:8443/api/rest/directors/1"
},
"director": {
"href": "https://localhost:8443/api/rest/directors/1"
},
"movies": {
"href": "https://localhost:8443/api/rest/directors/1/movies{?projection}",
"templated": true
}
}
}
在这种情况下templated = true
是什么意思?在哪里可以找到有关这些标签/字段含义的更多信息?