I want to limit my REST methods so that users can just use GET and POST. However, @RepositoryRestResource provides exposition of all the methods including DELETE and PUT. So I was just wondering how can I limit it?
@RestController allows to write our own mehtods, but there is lot of boilerplate associated.
I have been looking at documentation and github spring projects for this information, but can't find anything on it.
Any suggestions/help? Thank you!