码迷,mamicode.com
首页 > Web开发 > 详细

AspectJ通过xml配置的方式来实现

时间:2019-08-19 22:58:12      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:beans   top   lin   ret   org   line   expr   int   work   

AspectJ来通过xml配置实现可以通过参考查看下面的代码:

<?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.xsd
        http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop.xsd">
        <!--开启aspectJ的注解开发,AspectJ的自动代理-->
        <!--<aop:aspectj-autoproxy/>-->


        <!--目标类-->
        <bean id="xiaomao" class="com.AspecJ.xiaomaoDao"></bean>

        <!--切面类-->
        <bean id="AspecJ" class="com.AspecJ.aspectj"/>
     
        <!--通过xml配置-->
        <aop:config>
          <!--配置切点-->
                <aop:pointcut id="Mypointcut" expression="execution(* com.AspecJ.xiaomaoDao.find())"/>
                <aop:pointcut id="Mypointcut2" expression="execution(* com.AspecJ.xiaomaoDao.update())"/>
                <!--配置切面类和通知-->
          <aop:aspect id="aspectj" ref="AspecJ">
                        <aop:before method="before" pointcut-ref="Mypointcut"/>
                        <aop:after-returning method="after" pointcut-ref="Mypointcut2"/>
                </aop:aspect>
        </aop:config>

</beans>

 

AspectJ通过xml配置的方式来实现

标签:beans   top   lin   ret   org   line   expr   int   work   

原文地址:https://www.cnblogs.com/xiaolaha/p/11380211.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!