Spring2.X以AspectJ 式AOP 配置事务
(1)配置:
??? Spring的事务管理是通过AOP代理实现的,其中的事务通知由元数据驱动。代理对象与事务元数据结合产生一个AOP代理,它使用一个PlatformTransactionManager实现,配合TransactionInterceptor,在方法调用前后实施事务。
- <?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:aop="http://www.springframework.org/schema/aop"? ??
-
????xmlns:tx="http://www.springframework.org/schema/tx"? ??
-
????xsi:schemaLocation="http:??
-
????http:??
-
????http:??
-
????http:??
- ??
- ????<description>springApp</description>???? ??
-
????<!--?dataSource?for?MySQL?--> ??
-
????<bean?id="dataSource"??
-
????????class="org.apache.commons.dbcp.BasicDataSource"??
-
????????destroy-method="close"> ??
-
????????<property?name="driverClassName"??
-
????????????value="com.mysql.jdbc.Driver"?/> ??
-
????????<property?name="url"??
-
????????????value="jdbc:mysql://localhost:3306/springapp"?/> ??
-
????????<property?name="username"?value="root"?/> ??
<