Reputation: 4977
I have some actions in a Struts(1) application. The actions currently are open to both GET/ POST Methods. We want to restrict the visibility of individual Actions to GET/ POST requests. Where do we specify that? Is it done in struts-config.xml
Upvotes: 1
Views: 1246
Reputation: 160191
No, it isn't.
The two easiest options for Struts 1 apps are:
Upvotes: 2