Can I have more than one struts-config.XML file for a single struts application?
Answered by asreeni on 2005-04-08 03:24:40: the core of the struts framework is a flexible control layer based on standard technologies like Java servlets, Javabeans, resourcebundles, and XML, as well as various jakarta commons packages. Struts encourages application architectures based on the model...
I worked with struts it completely MVC base. I used SHINE pattern. It is a MVC base too. Actually it is an open source project to implement J2EE application.
Apache Struts is a frame work build on several design patterns like MVC, FrontController, Factory, Singleton etc., It is most suitable framework to develop web based applications, because this f...
Yes. In web.xml we can define as follows
action
org.apache.struts.action.ActionServlet
config
/WEB-INF/struts-config.xml,/WEB-INF/struts-my-config.xml,
2
Yes,You have more than one struts-config file in one single struts application.