My struts-config file is beginning to get a bit unwieldy.
 
Is it possible to call multiple *-config files from web.xml?
 
ex:
      <init-param>
        <param-name>config</param-name>
        <param-value>/WEB-INF/meaningfulName1-config.xml</param-value>
      </init-param>
      <init-param>
        <param-name>config</param-name>
        <param-value>/WEB-INF/meaningfulName2-config.xml</param-value>
      </init-param>
 
or will "config" be overwritten each time?
 
D
 

Reply via email to