Hey,
I have been working with Struts for some time, but for a project I am finishing I was asked to separate Templates (velocity .vm files), configs (struts.xml, persistence.xml) from main WAR file.
I have all in default structure like:
application
|-- META-INF -- Some configs are here
|-- WEB-INF -- others here
| |-- classes
| | |-- META-INF
| | `-- mypackage
| | `-- class-files
| `-- lib
|-- css
`-- tpl -- Template dir to be relocated
And I apparently can't find documentation about how to setup (probably in struts.xml) where my templates go, and where config files will be.
I think I will have to use configurations on the application server too (I am using Jetty 5.1.14).
So, any lights on how to configure it ?
Thanks