1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:aop="http://www.springframework.org/schema/aop"
  5. xmlns:tx="http://www.springframework.org/schema/tx"
  6. xmlns:context="http://www.springframework.org/schema/context"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans
  8. http://www.springframework.org/schema/beans/spring-beans.xsd
  9. http://www.springframework.org/schema/tx
  10. http://www.springframework.org/schema/tx/spring-tx.xsd
  11. http://www.springframework.org/schema/aop
  12. http://www.springframework.org/schema/aop/spring-aop.xsd "
  13. >
  14. <bean id="transactionManager"
  15. class="org.springframework.orm.hibernate3.HibernateTransactionManager"
  16. abstract="false" lazy-init="default" autowire="default"
  17. dependency-check="default">
  18. <property name="sessionFactory">
  19. <ref bean="sessionFactory" />
  20. </property>
  21. </bean>
  22. <tx:advice id="txAdvice" transaction-manager="transactionManager">
  23. <tx:attributes>
  24. <tx:method name="add*" propagation="REQUIRED" />
  25. <tx:method name="delete*" propagation="REQUIRED" />
  26. <tx:method name="update*" propagation="REQUIRED" />
  27. <tx:method name="add*" propagation="REQUIRED" />
  28. <!-- <tx:method name="*" propagation="true" />-->
  29. </tx:attributes>
  30. </tx:advice>
  31. <aop:config>
  32. <aop:pointcut id="allManagerMethod"
  33. expression="execution(* com.service.*.*(..))" />
  34. <aop:advisor advice-ref="txAdvice"
  35. pointcut-ref="allManagerMethod" />
  36. </aop:config>
  37. </beans>

Eclipse不能识别<tx:advice/>标签

在开发Spring的过程中,有时会出现Eclipse不能识别<tx:advice/>标签。

提示出现以下错误:

The prefix "tx" for element "tx:advice" is not bound

这个错误的原因很简单是:

我们在定义申明AOP的时候。。没有加载schema。

具体表现如下:

Xml代码  
  1. <beans>
  2. <tx:advice id="txAdvice" transaction-manager="transactionManager">
  3. <tx:attributes>
  4. <tx:method name="get*" read-only="true"/>
  5. <tx:method name="*" propagation="REQUIRES_NEW" rollback-for="Exception"/>
  6. </tx:attributes>
  7. </tx:advice>
  8. <!-- aop代理设置-->
  9. <aop:config proxy-target-class="true">
  10. ....
  11. </aop:config>
  12. </beans>

这时会抛出异常不认<TX>标签。。起先还以为是没有加载JAR包呢。。

后来读AOP文档才发现<beans>中要加入“xmlns:aop”的命名申明,并在“xsi:schemaLocation”中指定aop配置的schema的地址

配置文件如下:

Xml代码  
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans "
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance "
  4. xmlns:aop="http://www.springframework.org/schema/aop "
  5. xmlns:tx="http://www.springframework.org/schema/tx "
  6. xsi:schemaLocation="http://www.springframework.org/schema/beans
  7. http://www.springframework.org/schema/beans/spring-beans.xsd
  8. http://www.springframework.org/schema/tx
  9. http://www.springframework.org/schema/tx/spring-tx.xsd
  10. http://www.springframework.org/schema/aop
  11. http://www.springframework.org/schema/aop/spring-aop.xsd ">

这些才是最关键的地方。。后面的配置不变。。。。

Spring使用 <tx:advice>和 <aop:config> 用来配置事务,具体如何配置你可以参考Spring文档。

综上:包com.evan.crm.service下的任意class的具有任意返回值类型、任意数目参数和任意名称的方法 
<tx:advice/> 有关的设置

这一节里将描述通过 <tx:advice/> 标签来指定不同的事务性设置。默认的 <tx:advice/> 设置如下:

事务传播设置是 REQUIRED

隔离级别是 DEFAULT

事务是 读/写

事务超时默认是依赖于事务系统的,或者事务超时没有被支持。

任何 RuntimeException 将触发事务回滚,但是任何 checked Exception 将不触发事务回滚

这些默认的设置当然也是可以被改变的。 <tx:advice/> 和 <tx:attributes/> 标签里的 <tx:method/> 各种属性设置总结如下: 
表 9.1. <tx:method/> 有关的设置

属性 是否需要? 默认值 描述
name   与事务属性关联的方法名。通配符(*)可以用来指定一批关联到相同的事务属性的方法。 如:'get*'、'handle*'、'on*Event'等等。
propagation REQUIRED 事务传播行为
isolation DEFAULT 事务隔离级别
timeout -1 事务超时的时间(以秒为单位)
read-only false 事务是否只读?
rollback-for   将被触发进行回滚的 Exception(s);以逗号分开。 如:'com.foo.MyBusinessException,ServletException'
no-rollback-for   不 被触发进行回滚的 Exception(s);以逗号分开。 如:'com.foo.MyBusinessException

spring tx:advice 和 aop:config 配置事务 1相关推荐

  1. spring tx:advice 和 aop:config 配置事务

    版权声明:本文为博主原创文章,未经博主允许不得转载. https://blog.csdn.net/u010741376/article/details/46584463 spring tx:advic ...

  2. spring tx:advice事务配置

    http://www.cnblogs.com/rushoooooo/archive/2011/08/28/2155960.html 链接归纳的很详细 首先在/WEB-INF/applicationCo ...

  3. Spring Cloud Alibaba - 19 Nacos Config配置中心加载不同微服务的通用配置的两种方式

    文章目录 Pre 实现 方式一 通过 shared-dataids 方式 方式二 通过 ext-config方式 配置文件优先级 源码 Pre Spring Cloud Alibaba - 18 Na ...

  4. Spring Cloud Alibaba - 18 Nacos Config配置中心加载相同微服务的不同环境下的通用配置

    文章目录 需求 实现 Step 1 Nacos Config 新增公共配置 Step 2 验证 配置文件优先级 源码 需求 举个例子,同一个微服务,通常我们的servlet-context 都是相同的 ...

  5. Spring Boot 中使用 @Transactional 注解配置事务管理

    From: https://blog.csdn.net/nextyu/article/details/78669997 事务管理是应用系统开发中必不可少的一部分.Spring 为事务管理提供了丰富的功 ...

  6. spring tx:advice(转)

    默认的 <tx:advice/> 设置如下: 事务传播设置是 REQUIRED 隔离级别是 DEFAULT 事务是 读/写 事务超时默认是依赖于事务系统的,或者事务超时没有被支持. 任何 ...

  7. Spring tx:advice/

    <tx:advice/> 有关的设置 这一节里将描述通过 <tx:advice/> 标签来指定不同的事务性设置.默认的 <tx:advice/> 设置如下: 事务传 ...

  8. Spring Cloud Alibaba - 17 Nacos Config 配置中心 应用篇

    文章目录 Nacos配置中心基础概念 配置服务 (Configuration Service) 配置管理 (Configuration Management) 配置项 配置集 配置集 ID 配置分组 ...

  9. 事务配置_SSH(五)- 使用注解方式配置事务管理

    步骤1:修改applicationContext.xml步骤2:为ProductServiceImpl 添加注解步骤3:测试步骤4:MYSQL 表的类型必须是INNODB才支持事务 步骤 1 : 修改 ...

最新文章

  1. 编译ceph源码:cython module not found问题的解决
  2. Confluence 6 配置文件和key
  3. 字节跳动Java面试:java软件工程师简历描述项目
  4. 机器学习笔记:牛顿方法
  5. Velocity.js中文文档
  6. 乡村野生草药_官方野生蝇群流口水分数
  7. input的onchange事件 及只能输入数字实现
  8. USACO Broken Necklace
  9. DynamipsGUI笔记
  10. 流量魔盒FlowBox 发行的代币是DMC骗局分析
  11. 大话西游服务器维护多长时间,《大话西游3》2010-9-21服务器停机维护公告(二)...
  12. 动态规划-背包问题求解过程【代码 from eason】
  13. 国产麒麟系统为何饱受争议?
  14. python到底怎么读?
  15. ingress 七层负载均衡器
  16. Python操作Excel自动插入图片
  17. 浏览被植入木马的网站,可能也会中木马
  18. Mysql 中文名称(包括字母)按首字母排序
  19. 技术分享 | 嵌入式常用滤波算法的matlab实现
  20. 小学计算机教案范文,小学三年级计算机教案范文

热门文章

  1. 原来发朋友圈还有这讲究,难怪我的朋友圈没人看
  2. ctrl+alt+t 函数注释快捷键失效KoroFileHeader
  3. Python3 计算空气质量指数AQI
  4. 《现代密码学教程》| 谷利泽 | 课后答案 | 个人整理
  5. 只要简单7步就能破解魔方的图文教程!怎样还原魔方?
  6. VScode 淡绿色界面
  7. 暨大计算机研学教育,暨大数学复试线平台,统计学
  8. 光滑曲线_光滑流形(4)
  9. 第七章 项目招投标与合同管理
  10. OCP认证体系大揭秘