I am building spring (spring boot) based api. Is it possible to remove _embedded keyword from generated by hateoas library json output? I would like to have collection of my items displayed not under the _embedded. I know it breaks the specification however I was wondering if there are easy ways to customize the output but still use spring hateoas? In case that it is not possible, should I use different api building library that would allow more flexibility in terms of the generated output, in that case what would you suggest?
My controller code:
@RequestMapping(method = RequestMethod.GET, produces = "application/json")
HttpEntity<Resources<Author>> getAllAuthors() {
Resources<Author> resources = new Resources<>(this.authorsService.findAll());
resources.add(this.entityLinks.linkToCollectionResources(Author.class));
return new ResponseEntity<>(resources, HttpStatus.OK)
Also here are some known issues:https://github.com/spring-projects/spring-hateoas/issues/175