spring中的切点(AOP)和事务(ACID)的结合使用 spring.xml的配置

来源:互联网 发布:m4a1黑龙数据 编辑:程序博客网 时间:2024/05/20 05:31
<?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:context="http://www.springframework.org/schema/context"    xmlns:tx="http://www.springframework.org/schema/tx"    xmlns:aop="http://www.springframework.org/schema/aop"    xsi:schemaLocation="    http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-4.2.xsd    http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-4.2.xsd    http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-4.2.xsd    http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-4.2.xsd    ">            <!-- 扫描注解 --><context:component-scan base-package="lesson04.testm"></context:component-scan><!-- 读取properties资源文件 --><context:property-placeholder location="classpath:/lesson04/jdbc/jdbcoracle.properties"/><!-- ${username}是个关键字  默认获取操作系统用户 --><!-- 连接数据库 --><bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource"><property name="url" value="${url}"></property><property name="username" value="${username1}"></property><property name="password" value="${password}"></property><property name="driverClassName" value="${driverClass}"></property></bean><!-- jdbc的模板   可以执行sql语句 --><bean id="jdbcTemplate" class="org.springframework.jdbc.core.JdbcTemplate"><!-- 把连接数据库的bean注入 --><property name="dataSource" ref="dataSource"></property></bean><!-- 事务管理类 --><bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager"><!-- 事务需要操作数据库     要把连接数据库的bean注入 --><property name="dataSource" ref="dataSource"></property></bean><!-- 定义通知  通知的代码  spring已经实现 --><!-- 上面的id名为 id="transactionManager" 下面的 transaction-manager="transactionManager"可以不写--><tx:advice id="myAdvise" transaction-manager="transactionManager"><tx:attributes><!-- propagation="REQUIRED"  方法和方法之间存在父子关系REQUIRED 默认   父方法没有事务创建一个事务  有事务使用父方法当前事务REQUIRES_NEW   不管父方法是否存在事务  都会新建事务SUPPORTS  父方法存在事务  使用当前事务   没有事务 使用jdbc的事务(自动提交) NOT_SUPPORTED  不管父方法中是否存在事务  都不会使用父方法中的事务(挂起事务) MANDATORY   必须在事务环境中运行  父方法没有事务  抛出异常 No existing transaction found for transaction marked with propagation 'mandatory' NEVER  父方法中不能存在事务   有事务就抛出异常   设置隔离事务属性 isolation="DEFAULT" 隔离级别          DEFAULT  使用数据库本身的隔离级别 ORACLE(读已提交) MYSQL(可重复读)   READ_UNCOMMITTED  spring实现读未提交 (脏读)   READ_COMMITTED     spring实现读已提交 (待解决--不可重复读+幻读)   REPEATABLE_READ   spring实现可重复读 (待解决--幻读)   SERIALIZABLE     spring实现串行化(已解决)      设置回滚事务属性 :spring事务 运行过程中 碰到运行时异常 自动回滚 非运行时异常不会回滚   rollback-for=""  指定会自动回滚的非运行时异常       设值成Exception就可以了   发生任何异常都回滚   no-rollback-for="" 指定某些运行时异常抛出时 不回滚   只读事务属性 (除特定的方法以外其他的业务逻辑方法 都不应该操作事务)    read-only="true"设置只读事务    超时事务属性  timeout=10-30左右  mysql默认10s自动超时  oracle永不超时    --><tx:method name="Update*" propagation="REQUIRED" rollback-for="Exception" isolation="DEFAULT" timeout="5"/><tx:method name="save*" propagation="REQUIRED"/><tx:method name="delete*"/><tx:method name="*" read-only="true"/></tx:attributes></tx:advice><!-- 定义切点 --><aop:config><!-- 任意返回值    lesson04.testm.dao包下的所有类、所有方法拦截 --><aop:pointcut expression="execution(* lesson04.testm.dao.*.*(..))" id="myPoint"/><!-- 把切点和通知绑定     <tx:advice> --><aop:advisor advice-ref="myAdvise" pointcut-ref="myPoint"/></aop:config></beans>