Reputation: 2216
I have read these questions on disabling a list of methods in Tomcat:
But is there a way to return a 405 response instead of a 403 response?
Upvotes: 0
Views: 9742
Reputation: 2216
Build a servlet filter that checks the request method and sends a 405 response if the method is on a blacklist.
Upvotes: 2