Feeds:
Posts
Comments

Archive for the ‘Struts 2’ Category

There are two sets of parameters. Configuration parameters HTTP request parameters The first set of parameters that are accessed are the configuration parameters to the action. That has nothing to do with the incoming request. Those are parameters, that have been added in STRUTS.XML, for the particular action. Note, these parameters are true for EVERY [...]

Read Full Post »

1. Make sure you have defined result name input in your struts.xml file. <action name=”tes” method=”testPhase”> <result name=”input”>/Project.jsp</result> </action> 2. Give fully qualified name under the tag class=”” in struts.xml for the particular action.  

Read Full Post »