Re: Disable GET site-wide

2009-04-22 Thread Wes Wannemacher
Why not write another interceptor and place it early in your stack? Disabling all GET requests seems a bit overzealous though, GET is used by so much more than form submission. I would say to inherit from MethodFilterInterceptor and then perform whatever logic you want to perform when you see a no

Disable GET site-wide

2009-04-22 Thread Security Management
Is there any way to prevent struts 2 from processing GET parameters? I have my application to only use POST forms, so the values are not visible in the URL, is there a way to have struts not call setters for the http://host/myapp/delete_person?id=12345, and only set it for the action if it's submi