how can you define multiple paths e.g.
- C:\tomcat\jnilib
- d:\bar
as value to the java.library.path option on a tomcat 7 server.
I am working on windows so I guessed this should work
-Djava.library.path=c:\tomcat\jnilib;d:\bar
But my webapplication in the tomcat server does not find the necessary dlls which are in the folder d:\bar. If I place the them into the jnilib folder and remove the second path in the java.library.path then the webapp finds the dlls.