mysql - deploying web app in tomcat7 -
i've deployed web app in tomcat7 , have start app, every time try start web app got error:
fail - application @ context path /agileexpress not started
and got on log, seem having problem sql
may 15, 2015 4:54:55 pm org.apache.catalina.startup.catalina start info: server startup in 35067 ms may 15, 2015 4:55:39 pm org.apache.catalina.core.standardcontext startinternal severe: error listenerstart may 15, 2015 4:55:39 pm org.apache.catalina.core.standardcontext startinternal severe: context [/agileexpress] startup failed due previous errors may 15, 2015 4:55:39 pm org.apache.catalina.loader.webappclassloader clearreferencesjdbc severe: web application [/agileexpress] registered jdbc driver [com.mysql.jdbc.driver] failed unregister when web application stopped. prevent memory leak, jdbc driver has been forcibly unregistered. may 15, 2015 4:55:39 pm org.apache.catalina.loader.webappclassloader clearreferencesthreads severe: web application [/agileexpress] appears have started thread named [mysql statement cancellation timer] has failed stop it. create memory leak.
can me? i'm newbie on tomcat7
move jdbc drivers tomcat (common classloader) lib/ directory (defined in catalina.properties
file, located in catalina_home/lib
). tell common classloader load driver , there should no problem webapp classloader.
Comments
Post a Comment