Tomcat 6 JNI Re-Loading Problem

2007-08-31 Thread Matt Chambers
Hey all, I'm loading a couple classes that use native code libraries. Everything loads great the first time, but during hot deployment, tomcat complains the .so is already loaded. Is there a way to make sure the libraries get unloaded? In one of my classes I have the standard: static {

Re: Tomcat 6 JNI Re-Loading Problem

2007-08-31 Thread Filip Hanik - Dev Lists
nope, don't think you can unload them, I wouldn't load them in the webapp, if you are doing hotdeploy, or just catch the error and ignore it on a hot deploy Filip Matt Chambers wrote: Hey all, I'm loading a couple classes that use native code libraries. Everything loads great the first