In strurt why w use two differnt files web.xml and strut
config.xml?
Answers were Sorted based on User's Feedback
Answer / naman patidar
web.xml is an application level configuration file.
struts-config.xml is framework specific file and name of
this file is configured in we.xml under tag
<init-param>
<param-name>config</param-name>
<param-value>/WEB-INF/struts-config.xml</param-value>
</init-param>
you can change the name of file and location here.
| Is This Answer Correct ? | 18 Yes | 0 No |
Answer / anil
web.xml is effect for application level, and struts-
config.xml file is effect for struts frame/work level.
| Is This Answer Correct ? | 11 Yes | 2 No |
How can we get Servlet API Request, Response, HttpSession etc Objects in action classes?
Describe the mvc on struts?
Do we need to pay the struts if being used in commercial purpose?
Why actionservlet is singleton in struts?
What is the difference between struts and spring? Explain
How we can controlled duplicate form submission in struts?
What's mvc pattern ?
What does the term struts mean?
What are the contents on web.xml in struts application ?
What configurations are stored in struts configuration file ?
why we are using vo,dao and dto design patterns in struts framework
how to develop the submit and search operations in single jsp using struts?