论坛首页 入门技术论坛

spring声明式事务配置方法(五):DefaultAdvisorAutoProxyCreator

浏览 1565 次
精华帖 (0) :: 良好帖 (0) :: 新手帖 (0) :: 隐藏帖 (0)
作者 正文
   发表时间:2009-02-06   最后修改:2009-06-24
<?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:tx="http://www.springframework.org/schema/tx"
    xsi:schemaLocation="
            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd
            http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd
            http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd">
    <bean id="testAction" class="test.action.Stuts2ActionTest">
        <property name="service" ref="templatesService"></property>
    </bean>

    <bean id="templatesService"
        class="test.service.impl.TaoTemplatesServiceImpl">
        <property name="dao" ref="templatesDAO" />
    </bean>

    <bean id="templatesDAO" class="test.dao.impl.TaoTemplatesDAOImpl">
        <property name="sessionFactory" ref="sessionFactory"></property>
    </bean>

    <!--定义数据源-->
    <bean id="dataSource"
        class="org.apache.commons.dbcp.BasicDataSource">
        <!--   定义数据库驱动-->
        <property name="driverClassName">
            <value>oracle.jdbc.driver.OracleDriver</value>
        </property>
        <!--   定义数据库url-->
        <property name="url">
            <value>jdbc:oracle:thin:@192.168.1.96:1521:yxdb</value>
        </property>
        <!--   定义数据库用户名-->
        <property name="username">
            <value>yxuser</value>
        </property>
        <!--   定义数据库密码-->
        <property name="password">
            <value>yxuser</value>
        </property>
    </bean>

    <!--定义一个hibernate的SessionFactory-->
    <bean id="sessionFactory"
        class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
        <!--   定义SessionFactory必须注入DataSource-->
        <property name="dataSource">
            <ref local="dataSource" />
        </property>
        <property name="mappingResources">
            <list>
                <!--以下用来列出所有的PO映射文件-->
                <value>test/mapping/Tao_Templates.hbm.xml</value>
            </list>
        </property>
        <property name="hibernateProperties">
            <props>
                <prop key="hibernate.dialect">
                    org.hibernate.dialect.Oracle10gDialect
                </prop>
                <prop key="hibernate.show_sql">true</prop>
                <!--此处用来定义hibernate的SessionFactory的属性:
                    不同数据库连接,启动时选择create,update,create-drop -->
                <prop key="hibernate.hbm2ddl.auto">update</prop>
            </props>
        </property>
    </bean>

    <bean id="transactionManager"
        class="org.springframework.orm.hibernate3.HibernateTransactionManager">
        <property name="sessionFactory">
            <ref bean="sessionFactory" />
        </property>
    </bean>

    <bean id="transactionInterceptor"
        class="org.springframework.transaction.interceptor.TransactionInterceptor">
        <property name="transactionManager" ref="transactionManager" />
        <property name="transactionAttributeSource">
            <value>
                test.dao.impl.TaoTemplatesDAOImpl.add*=PROPAGATION_REQUIRED
                test.dao.impl.TaoTemplatesDAOImpl.mod*=PROPAGATION_REQUIRED
                test.dao.impl.TaoTemplatesDAOImpl.del*=PROPAGATION_REQUIRED
                test.dao.impl.TaoTemplatesDAOImpl.*=readOnly
                <!-- Add new defines here -->
            </value>
        </property>
    </bean>

    <bean
        class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator ">
        <property name="interceptorNames">
            <list>
                <value>transactionInterceptor</value>
                <!--
                    增加新的 Interceptor
                -->
            </list>
        </property>
    </bean>

    <!--
        删除了也能用
        <bean
        class="org.springframework.transaction.interceptor.TransactionAttributeSourceAdvisor">
        <property name="transactionInterceptor"
        ref="transactionInterceptor" />
        </bean>
    -->
</beans>
 
论坛首页 入门技术版

跳转论坛:
Global site tag (gtag.js) - Google Analytics