Tomcat连接池 - 工厂设置

时间:2012-10-24 15:29:36

标签: java jdbc connection-pooling

我一直在学习如何通过this网站设置Tomcat的连接池。所以我创建了一个context.xml文件并将其放在META-INF目录中。这就是我现在所拥有的。

<?xml version="1.0" encoding="UTF-8"?>

<Context>
    <Resource name="jdbc/gmustudent" auth="Container"
        type="javax.sql.DataSource" driverClassName="com.mysql.jdbc.Driver"
        username="root" password="root"
        url="jdbc:mysql://localhost:3306/official"
        maxActive="100" maxIdle="10" minIdle="5" initialSize="5" maxWait="10000" />
</Context>

但是我想指定工厂的类名。但每次我添加这个属性

factory="org.apache.tomcat.jdbc.pool.DataSourceFactory"

我的控制台出现了大量错误。以下是其中一些没有特别的顺序。

WARNING: Failed to register in JMX: javax.naming.NamingException: com.mysql.jdbc.Driver
WARNING: Unexpected exception resolving reference java.sql.SQLException: com.mysql.jdbc.Driver
WARNING: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:gmustudent' did not find a matching property.

因此,当我没有指定工厂时,网站工作得很好。但是当我做错误时,会抛出任何错误。我做了一些关于堆栈溢出的研究并发现了this帖子。因此,我将我的tomcat版本从7.0.11更改为最新版本但仍然出现错误。所以我想也许在我的server.xml文件中与我的工厂发生了某种冲突,但是我没有多少经验可以打电话。但这是我的server.xml文件中的资源

<Resource auth="Container" description="User database that can be updated and saved" factory="org.apache.catalina.users.MemoryUserDatabaseFactory" name="UserDatabase" pathname="conf/tomcat-users.xml" type="org.apache.catalina.UserDatabase"/>

这与我在context.xml文件中的工厂发生冲突吗?或者我在这里完全错了?在一个坚果shell中,我想了解如何在我的context.xml文件中指定一个工厂而不会出现巨大的错误。谢谢你的阅读。

1 个答案:

答案 0 :(得分:0)

如果需要,您可以使用Spring实际管理Web应用程序中的整个连接。以下是使用PostgreSQL的示例:

<?xml version="1.0" encoding="windows-1252"?>
<beans xmlns="http://www.springframework.org/schema/beans"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd">
    <bean id="myDataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
        <property name="driverClassName" value="org.postgresql.Driver"/>
        <property name="url" value="jdbc:postgresql://localhost/mydb"/>
        <property name="username" value="postgres"/>
        <property name="password" value="postgres"/>
    </bean>
</beans>

您可以将它放在WEB-INF / classes中并使用以下命令加载:

ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("/mycontext.xml");

我甚至不想让Tomcat管理它。