如果配置了Tomcat JDBC数据源,是否需要Hibernate c3p0配置

时间:2015-05-27 12:47:03

标签: java spring datasource

也许我在这里没有正确理解。如果已配置数据源,如下所示

<bean id="dataSource" class="org.apache.tomcat.jdbc.pool.DataSource" destroy-method="close" p:driverClassName="${jdbc.driverClassName}"
p:url="${db.url}" p:username="${db.username}" p:password="${db.password}" 
p:initialSize="10" 
p:minIdle="10" 
p:maxIdle="20" 
p:maxActive="50"
p:timeBetweenEvictionRunsMillis="30000"     
p:minEvictableIdleTimeMillis="60000"
p:validationQuery="SELECT 1"
p:validationInterval="30000" />

将以下属性添加到

是否有意义
<bean id="entityManagerFactory" class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">

<property name="dataSource" ref="dataSource" />

<property name="jpaProperties">
  <props>

    <prop key="hibernate.default_schema">${jdbc.schema}</prop>
    <prop key="hibernate.generate_statistics">${hibernate.generate_statistics}</prop>

    <prop key="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.SingletonEhCacheRegionFactory</prop>
    <prop key="hibernate.cache.use_query_cache">true</prop>
    <prop key="hibernate.cache.use_second_level_cache">true</prop>
    <prop key="hibernate.generate_statistics">true</prop>
    <prop key="hibernate.cache.provider_configuration_file_resource_path">ehcache.xml</prop>
    <prop key="hibernate.cache.region_prefix"></prop>
    <prop key="hibernate.cache.use_structured_entries">true</prop>

    <prop key="hibernate.c3p0.minPoolSize">5</prop>
    <prop key="hibernate.c3p0.maxPoolSize">20</prop> 
    <prop key="hibernate.c3p0.timeout">600</prop> 
    <prop key="hibernate.c3p0.max_statement">50</prop>
    <prop key="hibernate.c3p0.testConnectionOnCheckout">true</prop>

    </props>
</property>

如果没有。哪一个更好?

在我看来,我上面配置的是游泳池两次。一次使用Tomcat JDBC,另一次使用c3p0。

2 个答案:

答案 0 :(得分:1)

在这种情况下,Spring为您提供的好处是,您可以提供自己的DataSource并使用您想要/需要的连接池实现,无论您的应用程序将在何处部署,因此您的应用程序将完全独立于应用程序服务器(在本例中,作为servlet容器的Tomcat)。

从现在开始,这取决于您决定使用哪个连接池实现。 IMO我建议使用HikariCP而不是C3P0或Tomcat。免责声明:我不以任何方式支持HikariCP,我只是该技术的快乐用户。

答案 1 :(得分:1)

如果你想让spring从c3p0池获取数据源,只需让LocalContainerEntityManagerFactoryBean引用c3p0数据源bean。这是一个例子。

<bean id="entityManagerFactory"
    class="org.springframework.orm.jpa.LocalContainerEntityManagerFactoryBean">
    <property name="dataSource" ref="dataSource" />
    ...
</bean>
<bean id="dataSource" class = "com.mchange.v2.c3p0.ComboPooledDataSource" destroy-method="close">
    <property name="driverClass" value="${jdbc.driverClassName}" />
    <property name="jdbcUrl" value="${jdbc.url}" />
    <property name="user" value="${jdbc.username}" />
    <property name="password" value="${jdbc.password}" /> 

    <!-- these are C3P0 properties -->
    <property name="acquireIncrement" value="${c3p0.acquireIncrement}" />
    <property name="minPoolSize" value="${c3p0.minPoolSize}" />
    <property name="maxPoolSize" value="${c3p0.maxPoolSize}" />
    <property name="maxIdleTime" value="${c3p0.maxIdleTime}" />
</bean>

您可以根据需要配置属性。 您需要在项目中添加c3p0依赖项:

<dependency>
  <groupId>c3p0</groupId>
  <artifactId>c3p0</artifactId>
  <version>0.9.1.2</version><!--Maybe this is not the newest version-->
  <type>jar</type>
  <scope>compile</scope>
</dependency>

我想知道为什么不使用JNDI来提供数据源?以Tomcat为例,在$ TOMCAT_HOME / Context.xml中,Server.xml:

<Resource name="jdbc/sample" auth="Container"
    type="com.mchange.v2.c3p0.ComboPooledDataSource"
    username=...
    password=...
    url=...
    driverClassName=...
    otherAttributes...
/> 

要参考JNDI数据源,请参阅here。 关于C3P0汇集和弹簧,请参阅herehere