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 |
why we are using vo,dao and dto design patterns in struts framework
I will explain the scenario now i have a form1 having some fields and i made it extends DynaActionForm. in struts config how can i specify another form form2 which has to extend the form1 please specify is it better to use actionform or dyna action form in applations. is dyna action form is comfortable in declaring form variables of type 'ArrayList<somegenerics>' extend the
What is used to display the intermediate result in an interceptor?
wat happen when the connection is nt closed in jdbc n what vl happen when i interchange in executequery n execute statements
What is actionmapping?
How is forward action used for integration?
What is the purpose of @action annotation?
In struts how to use regurlar formbeans using validation framework explain?
How to explain struts work flow
12 Answers CSS, iFlex, iGate, mpower, TCS,
What are the applications of struts?
What are the major differences between html tags and strut specific html tags?
how many methods are there in RequestPrccesor class?