Using spring data REST I have exposed a ProjectRepository that supports listing projects and performing CRUD operations on them. When I go to http://local
ProjectRepository
http://local
I had the same issue. What worked for me was:
public class ProjectsResourceProcessor implements ResourceProcessor>> { private final @NonNull EntityLinks entityLinks; @Override public PagedResources> process(PagedResources> pagedResources) { ... return pagedResources; } }