I have a Grails application that builds and run fine in development, however when I create a war file (grails dev create war /target.helloworld.war) for example, that .war does not deploy properly.
Through process of elimination I have narrowed the problem down to the spring-security-ldap plugin.
I have tested this in three environments:
Tomcat 7 MacOSx JDK7 Tomcat 6 Ubuntu 12.04 JDK7 Tomcat 7 Ubuntu 12.04 JDK7
I am compiling with the same JDK version in all environments.
The error I get:
INFO: Deploying web application archive helloworld.war Nov 11, 2012 12:54:15 PM org.apache.catalina.core.StandardContext start SEVERE: Error listenerStart Nov 11, 2012 12:54:15 PM org.apache.catalina.core.StandardContext start SEVERE: Context [/helloworld] startup failed due to previous errors Nov 11, 2012 12:54:15 PM org.apache.catalina.loader.WebappClassLoader clearReferencesThreads SEVERE: The web application [/helloworld] appears to have started a thread named [MongoCleaner1671814044] but has failed to stop it. This is very likely to create a memory leak.
I have also followed the instruction for adding FINE logging to the classes folder, however that does not seem to help me here either.
For reference I have followed this thread: http://grails.1312388.n4.nabble.com/Deployment-problems-td4628710.html
Has anyone experience this and solved it with spring-security-ldap 1.0.6?
Thanks in advance?