| 1. |
Provide Some Important Struts2 Constants That You Have Used? |
|
Answer» Some of the Struts2 constants that I have used are:
We can configure above constants in struts.xml file like below. < constant name="struts.devMode" value="true" > < /constant > < constant name="struts.action.extension" value="action,do" > < /constant > < constant name="struts.custom.i18n.resources" value="global" > < /constant > < constant name="struts.convention.result.path" value="/" > < /constant > Some of the Struts2 constants that I have used are: We can configure above constants in struts.xml file like below. < constant name="struts.devMode" value="true" > < /constant > < constant name="struts.action.extension" value="action,do" > < /constant > < constant name="struts.custom.i18n.resources" value="global" > < /constant > < constant name="struts.convention.result.path" value="/" > < /constant > |
|