Open
Description
This has been requested before: http://stackoverflow.com/questions/30286795/how-to-force-spring-hateoas-resources-to-render-an-empty-embedded-array#comment69331410_30297552
For example, if the array is not rendered, REST clients will break. Handling this edge case by default will require additional coding in all REST clients.
How about extending the constructor?
new Resources<>(Exercise.class, exercises, ...);
is acceptable for me.