Hi there,
I want to build a webproject that includes a "core"-application. This core is in a JAR file. It uses it's own
struts configuration.
I tried to reference from the web.xml in the main-project to the struts-config.xml located inside the core-jar file
like this:
As this idea did not work I've put the core config file under web-inf in the main project.
Now the config file is found by the application and properties-files defined inside it (like ApplicationResources.properties [messages]) are also found, but the xml files referenced in the struts-config (like validator-config.xml or tiles-config.xml) cannot be found.
Example:
This works:
This didn't work:
Why can properties be found inside a jar file but no xml files ? Is there a way to do this ?
DO1EH