How to access one element of a REST collection through HATEOAS links?









up vote
0
down vote

favorite












I'm trying to build an architecture of RESTful services, and to build a gateway service for all of those, with Java Spring. In order to make the latter, I need to implement a client for the other services, which me and my colleagues tried to design around the HATEOAS principle, by providing links to related resources through spring-hateoas module.



Let's say I have a service running on localhost, listening on 8080 port, which returns a collection of resources with a GET operation on /resources. For example:




"_embedded" :
"resources" : [
"label" : "My first resource!",
"resourceId" : 3,
"_links" :
"self" :
"href" : "http://localhost:8080/resources/3"
,
"meals" :
"href" : "http://localhost:8080/resources",
"templated" : true


,
"label" : "Another resource!",
"resourceId" : 4,
"_links" :
"self" :
"href" : "http://localhost:8080/resources/4"
,
"meals" :
"href" : "http://localhost:8080/resources",
"templated" : true


]
,
"_links" :
"self" :
"href" : "http://localhost:8080/resources",
"templated" : true





I'm trying to use a HATEOAS client such as Traverson. How could I follow a resource element simply by following HATEOAS links? My solution so far has been to add a link to item on my collection, such as follow:



"_links" : 
"self" :
"href" : "http://localhost:8080/resources",
"templated" : true
,
"item" :
"href" : "http://localhost:8080/resources/id",
"templated" : true




So then I can replace the id directly in the template with Traverson and follow the result. But is it a good practice? Should I proceed another way?










share|improve this question





















  • This question sounds pretty similar to this one IMO
    – Roman Vottner
    Nov 11 at 16:53














up vote
0
down vote

favorite












I'm trying to build an architecture of RESTful services, and to build a gateway service for all of those, with Java Spring. In order to make the latter, I need to implement a client for the other services, which me and my colleagues tried to design around the HATEOAS principle, by providing links to related resources through spring-hateoas module.



Let's say I have a service running on localhost, listening on 8080 port, which returns a collection of resources with a GET operation on /resources. For example:




"_embedded" :
"resources" : [
"label" : "My first resource!",
"resourceId" : 3,
"_links" :
"self" :
"href" : "http://localhost:8080/resources/3"
,
"meals" :
"href" : "http://localhost:8080/resources",
"templated" : true


,
"label" : "Another resource!",
"resourceId" : 4,
"_links" :
"self" :
"href" : "http://localhost:8080/resources/4"
,
"meals" :
"href" : "http://localhost:8080/resources",
"templated" : true


]
,
"_links" :
"self" :
"href" : "http://localhost:8080/resources",
"templated" : true





I'm trying to use a HATEOAS client such as Traverson. How could I follow a resource element simply by following HATEOAS links? My solution so far has been to add a link to item on my collection, such as follow:



"_links" : 
"self" :
"href" : "http://localhost:8080/resources",
"templated" : true
,
"item" :
"href" : "http://localhost:8080/resources/id",
"templated" : true




So then I can replace the id directly in the template with Traverson and follow the result. But is it a good practice? Should I proceed another way?










share|improve this question





















  • This question sounds pretty similar to this one IMO
    – Roman Vottner
    Nov 11 at 16:53












up vote
0
down vote

favorite









up vote
0
down vote

favorite











I'm trying to build an architecture of RESTful services, and to build a gateway service for all of those, with Java Spring. In order to make the latter, I need to implement a client for the other services, which me and my colleagues tried to design around the HATEOAS principle, by providing links to related resources through spring-hateoas module.



Let's say I have a service running on localhost, listening on 8080 port, which returns a collection of resources with a GET operation on /resources. For example:




"_embedded" :
"resources" : [
"label" : "My first resource!",
"resourceId" : 3,
"_links" :
"self" :
"href" : "http://localhost:8080/resources/3"
,
"meals" :
"href" : "http://localhost:8080/resources",
"templated" : true


,
"label" : "Another resource!",
"resourceId" : 4,
"_links" :
"self" :
"href" : "http://localhost:8080/resources/4"
,
"meals" :
"href" : "http://localhost:8080/resources",
"templated" : true


]
,
"_links" :
"self" :
"href" : "http://localhost:8080/resources",
"templated" : true





I'm trying to use a HATEOAS client such as Traverson. How could I follow a resource element simply by following HATEOAS links? My solution so far has been to add a link to item on my collection, such as follow:



"_links" : 
"self" :
"href" : "http://localhost:8080/resources",
"templated" : true
,
"item" :
"href" : "http://localhost:8080/resources/id",
"templated" : true




So then I can replace the id directly in the template with Traverson and follow the result. But is it a good practice? Should I proceed another way?










share|improve this question













I'm trying to build an architecture of RESTful services, and to build a gateway service for all of those, with Java Spring. In order to make the latter, I need to implement a client for the other services, which me and my colleagues tried to design around the HATEOAS principle, by providing links to related resources through spring-hateoas module.



Let's say I have a service running on localhost, listening on 8080 port, which returns a collection of resources with a GET operation on /resources. For example:




"_embedded" :
"resources" : [
"label" : "My first resource!",
"resourceId" : 3,
"_links" :
"self" :
"href" : "http://localhost:8080/resources/3"
,
"meals" :
"href" : "http://localhost:8080/resources",
"templated" : true


,
"label" : "Another resource!",
"resourceId" : 4,
"_links" :
"self" :
"href" : "http://localhost:8080/resources/4"
,
"meals" :
"href" : "http://localhost:8080/resources",
"templated" : true


]
,
"_links" :
"self" :
"href" : "http://localhost:8080/resources",
"templated" : true





I'm trying to use a HATEOAS client such as Traverson. How could I follow a resource element simply by following HATEOAS links? My solution so far has been to add a link to item on my collection, such as follow:



"_links" : 
"self" :
"href" : "http://localhost:8080/resources",
"templated" : true
,
"item" :
"href" : "http://localhost:8080/resources/id",
"templated" : true




So then I can replace the id directly in the template with Traverson and follow the result. But is it a good practice? Should I proceed another way?







spring rest hateoas spring-hateoas






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 10 at 14:02









Sticmac

113




113











  • This question sounds pretty similar to this one IMO
    – Roman Vottner
    Nov 11 at 16:53
















  • This question sounds pretty similar to this one IMO
    – Roman Vottner
    Nov 11 at 16:53















This question sounds pretty similar to this one IMO
– Roman Vottner
Nov 11 at 16:53




This question sounds pretty similar to this one IMO
– Roman Vottner
Nov 11 at 16:53

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













 

draft saved


draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239726%2fhow-to-access-one-element-of-a-rest-collection-through-hateoas-links%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes















 

draft saved


draft discarded















































 


draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53239726%2fhow-to-access-one-element-of-a-rest-collection-through-hateoas-links%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3