how can you switch onemodule to another module by switch
action class plz explain with exapmle?



how can you switch onemodule to another module by switch action class plz explain with exapmle?..

Answer / m.gangadhar

hi,

let us a senario in our example we have two modules called
1.Module1
2.Module2

we have one main.jsp which is there in default module

main.jsp
--------
<html:form action="switch"?
prefix="/Module1"&page="/mod1.jsp"/>
<html:form action="switch"?
prefix="/Module2"&page="/mod2.jsp"/>
</html:form>

we have to take the struts-config.xml(default config file)
<action
type="org.apache.struts.actions.SwitchAction"
name=""
</action>

and dont forget to configure module specific configure
files in web.xml(mandatory)

<web-app>
<servlet>
<servlet-name>action</servlet-name>
<servlet-
class>org.apache.struts.action.ActionServlet</servlet-class>

<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
<init-param>
<param-name>config/Module1</param-name>
<param-value>/WEB-INF/struts-module1-config.xml</param-
value>
</init-param>
<init-param>
<param-name>config/Module2</param-name>
<param-value>/WEB-INF/struts-module2-config.xml</param-
value>
</init-param>
</servlet>
...
...
</web-app>


and many more but these things r very inportant and other
is asusual normal struts program.

if ur not clarified plz mail to ur problem my email id
metari.gangadhar@gmail.com

bye

Is This Answer Correct ?    31 Yes 10 No

Post New Answer

More Struts Interview Questions

In ActionClass we can use only one action i.e execute(), but in DispatchAction we can use multiple actions.My question is , we can use multiple actions in Action class if(action.equals("add") if(action.equals("update"). Then when to use Action and DispatchAction which is frequently in webapplications.

2 Answers  


how to develop the submit and search operations in single jsp using struts?

0 Answers   Wipro,


its a ActionForm controller or model?

16 Answers   Patni, TCS, Wipro,


What should be the name of xml file used for validation in struts?

0 Answers  


how the error can be showed in the jsp page in struts?

3 Answers   Wipro,






What is the purpose of form-beans tag in struct-config.xml?

0 Answers  


Describe the two types of formbeans.

0 Answers  


What are disadvantages of Struts?

0 Answers  


What do you mean by tiles in struts?

0 Answers  


What is the use of lookupdispatchaction?

0 Answers  


What is the purpose of @customvalidator annotation?

0 Answers  


How can you create your custom interceptor in struts 2?

0 Answers  


Categories