Google News
logo
Java Struts - Interview Questions
What is the default suffix for Struts2 action URI and how can we change it?
The default URI suffix for Struts2 action is .action, in Struts1 default suffix was .do. We can change this suffix by defining struts.action.extension constant value in our Struts2 configuration file as :
 
<constant name="struts.action.extension" value="action,do"></constant>
Advertisement