码迷,mamicode.com
首页 > 数据库 > 详细

Spring配置文件中的C3P0数据源配置和事务配置(采用mysql)

时间:2015-01-30 15:59:17      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:c3p0配置   c3p0连接池   

直接上代码技术分享

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"
    xmlns:p="http://www.springframework.org/schema/p"
    xsi:schemaLocation="http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd"
    xmlns:tx="http://www.springframework.org/schema/tx">

    <!--C3P0数据源配置-->

<bean id="dataSource" class="com.mchange.v2.c3p0.ComboPooledDataSource"
        destroy-method="close">
        <!-- 指定连接数据库的驱动 -->
        <property name="driverClass" value="com.mysql.jdbc.Driver" />
        <!-- 指定连接数据库的URL -->
        <property name="jdbcUrl" value="jdbc:mysql://localhost:3306/goods?useUnicode=true&amp;characterEncoding=utf-8" />
        <!-- 指定连接数据库的用户名 -->
        <property name="user" value="root" />
        <!-- 指定连接数据库的密码 -->
        <property name="password" value="" />
        <!-- 指定连接数据库连接池的最大连接数 -->
        <property name="maxPoolSize" value="20" />
        <!-- 指定连接数据库连接池的最小连接数 -->
        <property name="minPoolSize" value="1" />
        <!-- 指定连接数据库连接池的初始化连接数 -->
        <property name="initialPoolSize" value="1" />
        <!-- 指定连接数据库连接池的连接的最大空闲时间 -->
        <property name="maxIdleTime" value="20" />
    </bean>

<!--事务传播属性配置-->
    <tx:advice id="Test" transaction-manager="transactionManager">
        <tx:attributes>
            <tx:method name="save*" propagation="REQUIRED" />
            <tx:method name="del*" propagation="REQUIRED" />
            <tx:method name="update*" propagation="REQUIRED" />
            <tx:method name="add*" propagation="REQUIRED" />
            <tx:method name="find*" propagation="REQUIRED" />
            <tx:method name="get*" propagation="REQUIRED" />
            <tx:method name="apply*" propagation="REQUIRED" />
        </tx:attributes>
    </tx:advice>
    <!-- 配置参与事务的类 -->
    <aop:config>
        <aop:pointcut id="ServiceMethod" expression="execution(* org.service.*.*(..))" />
        <aop:advisor pointcut-ref="ServiceMethod"
            advice-ref="Test" />
    </aop:config>


Spring配置文件中的C3P0数据源配置和事务配置(采用mysql)

标签:c3p0配置   c3p0连接池   

原文地址:http://blog.csdn.net/u012871207/article/details/43306103

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!