Custom RepositoryRestController Mapping url throws 404 in spring-data-rest
问题 I have written a custom RepositoryRestController using its corresponding entity repository. When performing request on this url, the query is running in my console, but the url returns 404. I also able to see the requestHandlerMapping for this url in logs. Refer my following code snippet. Repository: @RepositoryRestResource public interface FooRepository extends BaseRepository<Foo, Integer> { @RestResource(exported = false) List<Foo> findByName(String name); } Controller: