I have a problem. Spring generates all REST methods for every repository annotated with @RepositoryRestResource annotation. The thing is, that for many resources I use in this project, we do not need all of the methods. It is slowing down the boot process of our application and generating redundant API links.
My question is: Is there a way to disable specific REST methods for specific repositories?
Thanks in advance.