I want to provide data from a database as a Restful API in a Spring application (SpringBoot). Spring's Data Rest function seems to be exactly right for this activity.
This database is read-only for my applications. By default, all HTTP methods are used. Is there some kind of configuration that I can use to limit (in fact, prevent) other methods due to the fact that they were open?
source share