热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

Spring高级教程(15):SpringAOP(3)——使用注解配置切面(1):方法执行前后的增强处理

本文介绍了如何在Spring框架中使用AspectJ实现AOP编程,重点讲解了通过注解配置切面的方法,包括方法执行前和方法执行后的增强处理。阅读本文前,请确保已安装并配置好AspectJ。
  1. 本文将介绍如何在Spring框架中使用AspectJ实现AOP编程,特别是通过注解配置切面的方法。这包括方法执行前和方法执行后的增强处理。
  2. 在开始之前,请确保已经安装并配置好AspectJ。具体的安装步骤可以在本系列的第15篇教程中找到。
  3. 安装完成后,需要将AspectJ库中的aspectjrt.jar和aspectjweaver.jar添加到项目的类路径中。具体操作方法请参考相关文档。
  4. 下面是一个示例,展示了如何在运行Hello类的sayHello方法之前调用AutoAspect类的before方法。Spring 高级教程(15):Spring AOP(3)—— 使用注解配置切面(1):方法执行前后的增强处理
  5. 首先,我们来看一下beans.xml文件的配置。在这个文件中,我们导入了AOP支持,并使用注解来配置Bean和切面。


    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-4.0.xsd
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-4.0.xsd
    http://www.springframework.org/schema/aop
    http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">


    expression="org.aspectj.lang.annotation.Aspect"/>




  6. 接下来是一个普通的类Hello,注意这个类并不知道它在执行过程中会被增强。
    package before_package;
    import org.springframework.stereotype.Component;
    @Component("hello")
    public class Hello {
    public void sayHello(String a, String b) {
    System.out.println(a + ", " + b);
    }
    }
  7. 然后是一个使用@Aspect注解的类AuthAspect,指定了对特定方法的增强处理。
    @Aspect
    public class AuthAspect {
    @Before("execution(* before_package.*.*(..))")
    public void before() {
    System.out.println("before");
    }
    }
  8. 最后是测试类SpringTest,用于验证切面是否生效。
    package test_spring_aop_package;
    import before_package.Hello;
    import org.springframework.context.ApplicationContext;
    import org.springframework.context.support.ClassPathXmlApplicationContext;
    public class SpringTest {
    public static void main(String[] args) {
    ApplicationContext applicatiOnContext= new ClassPathXmlApplicationContext("beans.xml");
    Hello hello = applicationContext.getBean("hello", Hello.class);
    hello.sayHello("Hello", "World");
    }
    }
  9. 此外,还可以在方法执行后进行增强处理,只需将@Before注解替换为@After即可。原理相同,此处不再赘述。

推荐阅读
author-avatar
pxrty_635
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有