Open
Description
Currently, JAX-RS query parameters are not taken into account when the resource href is built.
For instance how does a "catalog" resource should look like ?
- /products{?pageIndex, pageSize}
- /products?pageIndex=0&pageSize=10
- /products
For now it is the solution 3.
{
"resources": {
"catalog": {
"hints": {
"allow": [
"GET"
],
"formats": {
"application/hal+json": "",
"application/json": ""
}
},
"href": "/rest/products"
}
},
...
}