Tomcat 7:JDBC 驱动程序已被强制注销
我在部署 Groovy & 时遇到一些问题。 Tomcat 7 上的 Grails 应用程序。
这是我的配置:
Tomcat Version: Apache Tomcat/7.0.8
JVM Version: 1.6.0_26-b03
JVM Vendor: Sun Microsystems Inc.
OS Name: Linux
OS Version: 2.6.32-32-server
OS Architecture: amd64
Grails: 1.3.8
Groovy: 1.8.0
在服务器上有 5 个不同的应用程序都在运行并使用 com.mysql.jdbc.Driver,但是当我想再部署一个应用程序时,我收到此错误:
严重:Web 应用程序 [/RacuniWeb_v3-0.1] 注册了 JDBC 驱动程序 [com.mysql.jdbc.Driver] 但无法注销它 Web 应用程序已停止。为了防止内存泄漏,已强制取消注册 JDBC 驱动程序。
谁能帮助我吗?怎样做才能部署有效?
I have some problems with deploying Groovy & Grails application on Tomcat 7.
There is my configuration:
Tomcat Version: Apache Tomcat/7.0.8
JVM Version: 1.6.0_26-b03
JVM Vendor: Sun Microsystems Inc.
OS Name: Linux
OS Version: 2.6.32-32-server
OS Architecture: amd64
Grails: 1.3.8
Groovy: 1.8.0
On server there is 5 different application all runing and using com.mysql.jdbc.Driver, but when I want to deploy one more application I ger this error:
SEVERE: The web application [/RacuniWeb_v3-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.
Can anyone help me ? What to do that deploy will work ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当 tomcat jdbc 驱动程序位于您的 grails 应用程序中时,您将收到此消息。 (在 lib 内)文件夹。当您将 jdbc 驱动程序放在 tomcat lib 文件夹中而不是应用程序 lib 文件夹中时,此消息将消失。
You will get this message when the tomcat jdbc driver is in your grails app. (inside the lib) folder. When you place the jdbc driver in the tomcat lib folder instead of inside the application lib folder this message will disappear.