Например, для сущности User
значения по умолчанию будут:
path = users
itemResourceRel = user
collectionResourceRel = users
Пример:
GET / users (путь: users
)
"_links": {
"self": {
"href": "http://localhost:8080/api/users"
},
"users": { <-- collectionResourceRel
"href": "http://localhost:8080/api/users"
}
}
GET / users / 1 (путь: users
)
"_links": {
"self": {
"href": "http://localhost:8080/api/users/1"
},
"user": { <-- itemResourceRel
"href": "http://localhost:8080/api/users/1"
}
}