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

时间:2015-08-23 10:58:31

标签: java tomcat java-ee datasource

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

我的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>
&#13;
&#13;
&#13;

我的web.xml

&#13;
&#13;
<?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>
&#13;
&#13;
&#13;

例外:

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

有人可以帮我解决这些例外问题。

2 个答案:

答案 0 :(得分:0)

一旦我从jdbc url&#34; jdbc:mysql:// localhost:3306 / themestore?profileSQL = true&#34;

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

答案 1 :(得分:0)

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

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