I'm working in my learn project with AngularJS and Spring Rest Data.
I have the database tables Reservation and Client, a Reservation has a Client, perfect ... the JSON response for a Reservation query is the next:
In yellow, it's the Client URL reference, I want to know if there any way to load this Client object to the response, some like the Jackson way (load the object and the intern object data, not a link), I know that it's the way with Spring Rest Data, but I'm confused by the way in that I should do this.
In my Angular Controller I have this:
And, in the view (I wish .. ) I load the client data, but obviously not have data (because I didn't query the client link)
The client view (table) looks like this (client data not shown)
Please help me :) Thanks a lot!