Hello,

I want to specify multiple struts-config files.
But I don't want to use comma seperated list like

<init-param>
  <param-name>config</param-name>
  <param-value>
    /WEB-INF/struts-config.xml,
    /WEB-INF/struts-config2.xml,
    /WEB-INF/struts-config3.xml
  </param-value>
</init-param>

I want to use wildcards. So it should look like this.
<init-param>
  <param-name>config</param-name>
  <param-value>
    /WEB-INF/struts*,
    /WEB-INF/user/struts*
  </param-value>
</init-param>

Has anyone some hints ?

I was thinking about extending org.apache.struts.action.ActionServlet
and overwriting parseModuleConfigFile(Digester digester, String path)

Thanks
Volker


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to