|
From: Leif M. <le...@ta...> - 2006-11-24 18:31:01
|
Peter, The Wrapper works with classpaths in exactly the same way as Java does. It just makes it easier to build them up. When you add jar files, you add their names to the classpath, but for unarchived directories (ie your files) you need to add the root directory of that directory hierarchy. The wrapper also supports wildcards, so you can simplify your configuration. So try this: wrapper.java.classpath.1=../conf wrapper.java.classpath.2=../libs/*.jar Cheers, Leif peter ellis wrote: > Hi guys > > Ive got a problem with my wrapper.conf when i specify for example: > > > wrapper.java.classpath.1=../conf/applicationContext-monitor.xml > ... > wrapper.java.classpath.20=../libs/wrapper.jar > wrapper.java.classpath.21=../libs/activation.jar > > it can find the jars which is ok but when it attempts to find anything > like an xml document (i.e. my spring stuff) or a properties file then > it complains. > > Any ideas?! > > > > |