how can you switch onemodule to another module by switch
action class plz explain with exapmle?
Answer Posted / 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 View All Answers
how to connect from struts to database through hibernet and where u can modify the class
What's the purpose of execute method of action class?
Can we integrate struts with spring?
What are the benefits of Struts framework?
How to work with error tags?
Explain about the
What is apache struts used for?
If the framework doesn’t do what I want, can I request that a feature be added?
What is action chaining ?
How we can controlled duplicate form submission in struts?
Can you explain the directory structure for a struts folder in brief ?
1.can we transfer a request from one struts application to another struts application? 2. how many types of action servlets r there what r they
What do you mean by tiles in struts?
Which interceptor is responsible for mapping request parameters to action class Java Bean properties?
What is the use of forwardaction?