0

grails プロジェクトを tomcat webapp ディレクトリにデプロイする際に問題があります。

ログcatalina.outファイルを調べると、次のエラーが表示されます。

SEVERE: The web application [/test-0.1] registered the JDBC driver [com.mysql.jdbc.Driver] but failed to unregister it when the web application was stopped. To prevent a memory leak, the JDBC Driver has been forcibly unregistered.
Dec 24, 2012 10:41:52 AM org.apache.catalina.loader.WebappClassLoader clearThreadLocalMap
SEVERE: The web application [/test-0.1] created a ThreadLocal with key of type [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory$2] (value [org.codehaus.groovy.grails.commons.spring.ReloadAwareAutowireCapableBeanFactory$2@57390ad3]) and a value of type [java.lang.Boolean] (value [false]) but failed to remove it when the web application was stopped. This is very likely to create a memory leak.

Tomcat を初めて使用するので、これらのエラーの意味がわかりません。親切に私を助けてください。

前もって感謝します。

4

2 に答える 2

1

JDBCドライバーはクラスパスに存在しましたか?

これを修正するには、jqueryプラグインにフォルダーlibを作成します

例えば ~/.grails/2.1.0/projects/YourProject/plugins/jquery-1.x.x/lib

このフォルダーにJDBCドライバーjarをコピーします。

この助けを願っています。

于 2012-12-24T22:11:23.723 に答える