Spring Data REST How to add embedded resources inline
问题 I'm using Spring Data REST and Hateoas in combination with HAL browser. This works perfectly, but now I would like to make a JSON dump of a specific entity with (a set of) its associated objects. I used @Projection but then I got stuck again. FYI: The normal behaviour (with embedded and links etc) should remain besides the new endpoint (without embedded and links). To further illustrate my problem/question: class Person { String name; List<Company> companies; } class Company { String name;