A-O-P配置事务 博客分类: Spring AOPSpringBeanXML
<?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
"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-2.0.xsd
">
<!-- 配置通知Bean -->
<bean id="loggerBean" class="com.aptech.aop.LoggerBean" />
<!-- 配置目标对象 -->
<bean id="aopBean" class="com.aptech.aop.AOPBean"/>
<aop:config>
<!-- 配置切入点 -->
<aop:pointcut id="loggerCalls" expression="execution(* com.aptech.aop.AOPBean.display(..))" />
<!-- 配置切面 -->
<aop:aspect id="logAspect" ref="loggerBean">
<!-- 配置环绕通知 -->
<aop:around pointcut-ref="loggerCalls" method="aroundLogCalls" />
</aop:aspect>
</aop:config>
</beans>
推荐阅读
-
(转)Spring boot 切换配置文件到yaml 博客分类: springboot yaml
-
项目applicationContext.xml配置文件 博客分类: Spring XML项目管理配置管理HibernateAOP
-
A-O-P配置事务 博客分类: Spring AOPSpringBeanXML
-
A-O-P配置事务 博客分类: Spring AOPSpringBeanXML
-
简化Spring XML配置 博客分类: Spring基础 spring基础
-
简化Spring XML配置 博客分类: Spring基础 spring基础
-
spring加载多个xml配置文件 博客分类: Spring基础 Spring多配置文件xml
-
spring加载多个xml配置文件 博客分类: Spring基础 Spring多配置文件xml
-
zeus持久层spring事务单元测试 博客分类: 持久层架构分布式sharding开源 javaspringjdbcdao
-
spring源码学习系列4.1-spring实现对ibatis的事务管理 博客分类: spring spring