Tomcat DataSource getConnection 工作但在日志中抛出异常

Tomcat DataSource getConnection working but throwing exceptions in log

大家好,我是 J2EE 的新手(但不是 java),我正面临 tomcat 和 java 数据源的一个问题。 问题是当我调用 datasouce.getConnection() 服务器日志充满异常但是应用程序工作正常(它能够从数据库中获取数据)

我的context.xml:

<?xml version="1.0" encoding="UTF-8"?>
<Context>
    <!-- Specify a JDBC datasource -->
    <Resource name="jdbc/thmstordb" auth="Container"
        type="javax.sql.DataSource" username="myuser" password="mypass"
        driverClassName="com.mysql.jdbc.Driver"
        url="jdbc:mysql://localhost:3306/themestore?profileSQL=true"
        maxTotal="10" maxIdle="4" />
 
</Context>

我的web.xml

<?xml version="1.0" encoding="UTF-8"?>
<web-app id="WebApp_ID" version="3.0" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd">
 <display-name>ThemeStore</display-name>

 <servlet>
  <servlet-name>themestore-servlet</servlet-name>
  <servlet-class>
                     com.sun.jersey.spi.container.servlet.ServletContainer
         </servlet-class>
  <init-param>
       <param-name>com.sun.jersey.config.property.packages</param-name>
       <param-value>com.mmx.services</param-value>
  </init-param>
   <init-param>
  <param-name>com.sun.jersey.api.json.POJOMappingFeature</param-name>
  <param-value>true</param-value>
 </init-param>
  <load-on-startup>1</load-on-startup>
 </servlet>

 <servlet-mapping>
  <servlet-name>themestore-servlet</servlet-name>
  <url-pattern>/rest/*</url-pattern>
 </servlet-mapping>
 <resource-ref>
  <description>DB Connection</description>
  <res-ref-name>jdbc/thmstordb</res-ref-name>
  <res-type>javax.sql.DataSource</res-type>
  <res-auth>Container</res-auth>
 </resource-ref>
</web-app>

例外情况:

https://drive.google.com/file/d/0B71OH33lwaXwcUZLTTBPdFpxeFk/view?usp=sharing

谁能帮我消除这些异常。

我从 jdbc url "jdbc:mysql://localhost:3306/themestore?profileSQL=true"

中删除 ProfileSQL=true 后,异常就停止了

为了完整起见(因为它似乎有效):

您是否尝试过从连接字符串中删除 profileSQL=true?也许这个错误 http://bugs.mysql.com/bug.php?id=70677 导致了问题。