There are JPARepository in repository layer being called from Service Layer returning Entity to Spring MVC Controller layer. Controller will receive HTTPRequest as HATEOAS Resource. This is followed by a to and fro conversion from Resource to Entity and back to Resource with added links in ResourceAssemblerSupport.
Everything is in place and here is a link to what Just outlined above.
In between these, there are XML driven Spring configurations
Now there comes Spring-Data-Rest project which says it bridges the boilerplate code between JPARepository to HATEOAS ResourceAssemblerSupport using HAL specification. In that regard, how can Spring-Data-Rest let me get rid of to and fro conversion only in above setup ( ResourceSupport and ResourceAssemblerSupport ) ?