基于xml配置AOP

基于xml配置AOP

功能完善,重要(权限验证)的用配置。

<?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"
       xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd http://www.springframework.org/schema/context https://www.springframework.org/schema/context/spring-context.xsd http://www.springframework.org/schema/aop https://www.springframework.org/schema/aop/spring-aop.xsd">

    <bean id="myMathCal" class="com.lwt.xml.Calculator.impl.MyMathCal"></bean>
    <bean id="logUtilsAOP" class="com.lwt.xml.Calculator.utils.LogUtilsAOP"></bean>
    <bean id="logUtilsAroundAOP" class="com.lwt.xml.Calculator.utils.LogUtilsAroundAOP"></bean>
    <bean id="multiAOP" class="com.lwt.xml.Calculator.utils.MultiAOP"></bean>

<!--    aop名称空间-->
    <aop:config>
<!--        全局切入点表达式,无也可-->
        <aop:pointcut id="globalPoint" expression="execution(* com.lwt.xml.Calculator.impl.*.*(..))"/>
<!--        告诉spring哪个是切面类,相当于添加了@Aspect注解,执行顺序默认按配置顺序-->

        <aop:aspect ref="logUtilsAOP" order="1">
            <aop:pointcut id="myexecution" expression="execution(* com.lwt.xml.Calculator.impl.*.*(..))"/>

            <aop:before method="logStart" pointcut="execution(* com.lwt.xml.Calculator.impl.*.*(..))"></aop:before>
            <aop:after-returning method="logReturn" pointcut-ref="myexecution" returning="result"></aop:after-returning>
            <aop:after-throwing method="logException" pointcut-ref="myexecution" throwing="e"></aop:after-throwing>
            <aop:after method="logFinally" pointcut-ref="myexecution"></aop:after>
        </aop:aspect>

        <aop:aspect ref="multiAOP" order="2">
            <aop:before method="logStart" pointcut-ref="globalPoint"></aop:before>
            <aop:after-returning method="logReturn" pointcut-ref="globalPoint" returning="result"></aop:after-returning>
            <aop:after-throwing method="logException" pointcut-ref="globalPoint" throwing="e"></aop:after-throwing>
            <aop:after method="logFinally" pointcut-ref="globalPoint"></aop:after>
        </aop:aspect>

        <aop:aspect ref="logUtilsAroundAOP" order="3">
            <aop:around method="myAround" pointcut-ref="globalPoint"></aop:around>
        </aop:aspect>


<!--        在切面类中使用4+1个通知方法配置切面中的通知方法何时何地运行-->
    </aop:config>
</beans>
public class AopTest {
    /*
    有接口
     */
    @Test
    public void test1(){
        ApplicationContext ioc = new ClassPathXmlApplicationContext("spring-configAOP1.xml");
        // 从ioc容器中拿到目标对象,注意:如果想要用类型,一定用他的接口类型,不用用本类
        Calculator bean1 = ioc.getBean(Calculator.class);
/*如果拿被代理对象获取,则无法实现*/
        bean1.add(1,2);

        System.out.println(bean1); // com.lwt.Calculator.impl.MyMathCal@d29f28
        // ioc容器中保存的组件是代理对象$Proxy26
        System.out.println("ioc容器中保存的组件是代理对象"+bean1.getClass());

        Object bean2 = ioc.getBean("myMathCal");
        System.out.println(bean2);
        System.out.println("ioc容器中保存的组件是代理对象"+bean2.getClass());
    }
    /*
    无接口
     */
    @Test
    public void test2(){
//        ApplicationContext ioc = new ClassPathXmlApplicationContext("spring-configAOP1.xml");
        ApplicationContext ioc = new ClassPathXmlApplicationContext("spring-configAOP1_xml.xml");
        // 从ioc容器中拿到目标对象,注意:如果想要用类型,一定用他的接口类型,不要用本类。但是,当不实现接口后,则用假神被代理类或通过默认首字母小写id来获取bean对象
        MyMathCal bean1 = ioc.getBean(MyMathCal.class);
        bean1.div(4,2);

        System.out.println(bean1); // com.lwt.Calculator.impl.MyMathCal@d29f28
        // ioc容器中保存的组件是代理对象class com.lwt.Calculator.impl.MyMathCal$$EnhancerBySpringCGLIB$$9b6eec87
        System.out.println("ioc容器中保存的组件是代理对象"+bean1.getClass());

        Object bean2 = ioc.getBean("myMathCal");
        System.out.println(bean2);
        System.out.println("ioc容器中保存的组件是代理对象"+bean2.getClass());
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
Spring中,基于XML配置AOP的步骤如下: 1. 添加依赖并准备环境。 2. 创建通知类和接口,并实现方法。 3. 配置spring.xml文件。 4. 执行测试。 具体步骤如下: 1. 创建通知类和接口,并实现方法。 2. 在spring.xml文件中配置AOP。 3. 使用aop:config标签开始AOP配置。 4. 使用aop:aspect标签配置切面,其中id属性是给切面提供一个唯一标识,ref属性是指定通知类bean的Id。 5. 在aop:aspect标签内部使用对应标签来配置通知的类型,例如使用aop:before标签配置前置通知。 6. 在aop:before标签中,使用method属性指定Logger类中哪个方法是前置通知,使用pointcut属性指定切入点表达式,该表达式指定了对业务层中哪些方法进行增强。 7. 切入点表达式的写法可以使用关键字execution和具体的表达式来指定方法的访问修饰符、返回值、包名、类名和方法名等。 8. 在通知类中添加环绕通知方法,使用ProceedingJoinPoint接口作为环绕通知的方法参数,该接口提供了proceed()方法,用于明确调用切入点方法。 9. 在环绕通知方法中,可以通过proceedingJoinPoint.proceed(args)调用切入点方法,并在方法执行前后进行相应的操作。 10. 最后,执行测试来验证AOP配置的效果。 以上是基于XML配置AOP的步骤。通过配置AOP,可以在指定的切入点方法执行前后,或者在方法执行过程中进行增强操作。 #### 引用[.reference_title] - *1* *3* [Spring之基于XML配置AOP](https://blog.csdn.net/qq_38628046/article/details/108065715)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] - *2* [Spring基于XMLAOP配置](https://blog.csdn.net/weixin_45430616/article/details/104101117)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insert_down1,239^v3^insert_chatgpt"}} ] [.reference_item] [ .reference_list ]

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值