I have a folder, '/var/unity/conf' with some properties files in it, and I'd like the Caucho's Resin JVM to have that directory on the classpath.
What is the best way to modifiy resin.conf so that Resin knows to add this directory to the classpath?
I have a folder, '/var/unity/conf' with some properties files in it, and I'd like the Caucho's Resin JVM to have that directory on the classpath.
What is the best way to modifiy resin.conf so that Resin knows to add this directory to the classpath?
With Resin 3.1.6 and above, use
<server-default>
...
<jvm-classpath>/var/unity/conf/...</jvm-classpath>
...
</server-default>
(I know, very late to the game, I was searching for the answer to this myself and found this post here, as well as the solution, so thought I'd add back to the collective).