I have this secMarket.xml in my struts2 project, the code is below here:
<struts>
<package name="secMarket" namespace="/foliofn">
<action name="loans" class="tlc.ui.action.Loans" >
<result>/mainapp/pages/secMarket/loans.jsp</result>
</action>
</package>
how can I get the namespace value “/foliofn” as a String in the “execute” method of action class tlc.ui.action.Loans?
1 Answer