`

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

阅读更多
<?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>
 
分享到:
评论

相关推荐

    Spring声明式事务和@Aspect的拦截顺序问题的解决

    Spring 声明式事务和 @Aspect 的拦截顺序问题的解决 Spring 框架中,声明式事务和 @Aspect 都可以用于实现Aspect-Oriented Programming(面向方面编程),但是它们的拦截顺序问题往往会导致很多问题。本文将详细...

    spring 事务代理配置

    ### Spring事务管理——声明式事务配置详解 #### 引言 在现代的Java企业级应用开发中,事务处理是确保数据一致性和完整性的重要机制。Spring框架提供了强大的事务管理功能,支持编程式和声明式两种事务管理方式。...

    spring 事务(6中配置完全降解)

    本篇文章将详细解析Spring中的六种事务配置方法,帮助开发者深入理解并掌握Spring事务的运用。 1. **基于XML的事务配置** Spring支持通过XML配置来管理事务,这是最基础的配置方式。在`spring`的配置文件中,我们...

    Spring-Reference_zh_CN(Spring中文参考手册)

    9.5.1. 理解Spring的声明式事务管理实现 9.5.2. 第一个例子 9.5.3. 回滚 9.5.4. 为不同的bean配置不同的事务语义 9.5.5. &lt;tx:advice/&gt; 有关的设置 9.5.6. 使用 @Transactional 9.5.6.1. @Transactional 有关的设置 ...

    Spring.3.x企业应用开发实战(完整版).part2

    9.6 使用注解配置声明式事务 9.6.1 使用@Transactional注解 9.6.2 通过AspectJ LTW引入事务切面 9.7 集成特定的应用服务器 9.7.1 BEA WebLogic 9.7.2 BEA WebLogic 9.8 小结 第10章 Spring的事务管理难点剖析 10.1 ...

    Spring源码

    Spring支持编程式事务管理和声明式事务管理,后者通过`@Transactional`注解实现,更加便捷。 最后,Spring还提供了大量的其他模块,如Spring AOP、Spring Aspects、Spring Batch、Spring Boot、Spring Cloud等,...

    spring.net中文手册在线版

    14.5.1.理解Spring.NET声明式事务管理的实现 14.5.2.第一个例子 14.5.3.Transaction特性的设置 14.5.4.通过AutoProxyCreator使用声明式事务 14.5.5.通过TransactionProxyFactoryObject使用声明式事务 14.5.6. 通过...

    Spring3.x企业应用开发实战(完整版) part1

    9.6 使用注解配置声明式事务 9.6.1 使用@Transactional注解 9.6.2 通过AspectJ LTW引入事务切面 9.7 集成特定的应用服务器 9.7.1 BEA WebLogic 9.7.2 BEA WebLogic 9.8 小结 第10章 Spring的事务管理难点剖析 10.1 ...

    JavaEE spring自动实现AOP代理

    - 事务管理:使用AOP进行事务的声明式管理,简化事务控制代码。 - 权限验证:在方法调用前进行权限检查,确保只有授权用户才能执行特定操作。 7. **性能考虑**: - JDK动态代理需要目标对象实现至少一个接口,而...

    企业级信息系统开发教学PPT(3.1)

    Spring还提供了声明式事务管理,如TransactionProxyFactoryBean、BeanNameAutoProxyCreator(常用)和DefaultAdvisorAutoProxyCreator等不同方式,方便事务控制。 4. **整合应用**:Struts 2、Hibernate 和 Spring ...

    spring学习笔记

    Spring的Ioc Spring的AOP , AspectJ Spring的事务管理 , 三大框架的整合 目录 1.1 Spring 框架学习路线:..........................................................................................................

Global site tag (gtag.js) - Google Analytics