Spring基础篇:使用注解方式实现Spring提供的AOP

简介: 使用注解方式实现Spring提供的AOP

前期准备

这里的前期准备与XML配置类相同,核心的看如何通过注解实现AOP

以Spring为框架,只需要准备一个待加强的类。

以一个用户登录的例子,这个类中有两个方法,登录和登出。现在需要做一件事,在登录前输出当前时刻,在登出前也输出当前时刻。

public class UserService {
    public void login(){
        // 增强1
        System.out.println("用户登录");
    }

    public void logOut(){
        // 增强2
        System.out.println("用户登出");
    }
}

增强类

这里使用了日期模板,以及使用模板输出时间。

public class TimePrint {
    SimpleDateFormat matter = new SimpleDateFormat("现在时间:yyyy年MM月dd日E HH时mm分ss秒");
    public void printTime(){
        System.out.println(matter.format(new Date()));
    }
}

注意事项:

Spring底层还是使用的是aspectj的方式,所以一定要再加上该依赖。

<dependency>
    <groupId>org.aspectj</groupId>
    <artifactId>aspectjweaver</artifactId>
    <version>1.9.1</version>
</dependency>

使用注解的方式

我们不妨大胆设想一下,使用注解应该要有哪些内容:

  1. 【Bean注册,@Component】:待增强的类和增强的类都需要被Spring容器管理。这一点毋庸置疑,那么就需要在两个类上加上@Component注解.
  2. 【切面类,@Aspect】:加上@Component注解只表示将该类作为一个普通的Bean放到容器中,这对增强的类还不够。所以,我们还需要告诉容器增强的类是一个切面类(该增强类中的方法是抽取出来用来增强其他方法的)。那这就需要在增强类上添加@Aspect注解。
  3. 【切面类的方法如何增强原方法】:也就是之前说5种增强类型:
  • before 前置通知:目标对象的方法调用之前触发。
  • after后置通知:目标对象的方法调用之后触发。
  • afterReturning 返回通知:目标对象的方法调用完成,在返回结果值之后触发。
  • afterThrowing 异常通知:目标对象的方法运行中抛出 / 触发异常后触发。
  • around 环绕通知:编程式控制目标对象的方法调用。

在注解中分别对应为:

  • before 前置通知@Before
  • after后置通知@After
  • afterReturning 返回通知@AfterReturning
  • afterThrowing 异常通知@AfterThrowing
  • around 环绕通知@Around
  1. 【切点的表达式】:和XML的表达式一样
  2. 【配置类,有一个注意事项!】...【启动类】...

OK,开始动手,我们从第二步和第三步开始。

声明切面类及切点表达式

一样的,先直接贴出代码,然后我们一步步解释。

@Component
@Aspect
public class TimePrint {
    SimpleDateFormat matter = new SimpleDateFormat("现在时间:yyyy年MM月dd日E HH时mm分ss秒");
    @Before("execution(public * juejin.aopAnnotation.bean.UserService.* (..))")
    public void printTime(){
        System.out.println(matter.format(new Date()));
    }
}

将不重要的内容去除后,剩下

  • @Aspect:表示TimePrint是一个切面类。
  • @Before:表示printTime是一个前置增强方法,将在目标对象执行方法前执行
  • "execution(public * juejin.aopAnnotation.bean.UserService.* (..))":表示printTime方法是给包名是juejin.aopAnnotation.bean,类是UserService中的所有返回值是任意的方法,并且参数个数任意。

配置类

这里的配置类有一个注意事项:

需要在配置类上额外加上@EnableAspectJAutoProxy:表示自动装配支持AOP的内容。

@Configuration
@ComponentScan("juejin.aopAnnotation")
@EnableAspectJAutoProxy
public class AnnotationAopConfig {
}

启动类

就是正常的使用AnnotationConfigApplicationContext读取配置类,然后拿Bean执行方法。

public class AopAnnotationApplication {
    public static void main(String[] args) throws InterruptedException {
        AnnotationConfigApplicationContext ctx = new AnnotationConfigApplicationContext(AnnotationAopConfig.class);
        UserService userService = ctx.getBean(UserService.class);
        userService.login();
        Thread.sleep(1000);
        userService.logOut();
    }
}
目录
相关文章
|
10天前
|
Java Spring
【Spring】方法注解@Bean,配置类扫描路径
@Bean方法注解,如何在同一个类下面定义多个Bean对象,配置扫描路径
136 73
|
5天前
|
Java Spring 容器
【SpringFramework】Spring IoC-基于注解的实现
本文主要记录基于Spring注解实现IoC容器和DI相关知识。
40 21
|
10天前
|
存储 Java Spring
【Spring】获取Bean对象需要哪些注解
@Conntroller,@Service,@Repository,@Component,@Configuration,关于Bean对象的五个常用注解
|
10天前
|
Java Spring
【Spring配置】idea编码格式导致注解汉字无法保存
问题一:对于同一个项目,我们在使用idea的过程中,使用汉字注解完后,再打开该项目,汉字变成乱码问题二:本来a项目中,汉字注解调试好了,没有乱码了,但是创建出来的新的项目,写的注解又成乱码了。
|
2月前
|
监控 安全 Java
什么是AOP?如何与Spring Boot一起使用?
什么是AOP?如何与Spring Boot一起使用?
70 5
|
2月前
|
前端开发 Java Spring
Spring MVC核心:深入理解@RequestMapping注解
在Spring MVC框架中,`@RequestMapping`注解是实现请求映射的核心,它将HTTP请求映射到控制器的处理方法上。本文将深入探讨`@RequestMapping`注解的各个方面,包括其注解的使用方法、如何与Spring MVC的其他组件协同工作,以及在实际开发中的应用案例。
48 4
|
2月前
|
Java 开发者 Spring
Spring AOP 底层原理技术分享
Spring AOP(面向切面编程)是Spring框架中一个强大的功能,它允许开发者在不修改业务逻辑代码的情况下,增加额外的功能,如日志记录、事务管理等。本文将深入探讨Spring AOP的底层原理,包括其核心概念、实现方式以及如何与Spring框架协同工作。
|
2月前
|
前端开发 Java 开发者
Spring MVC中的请求映射:@RequestMapping注解深度解析
在Spring MVC框架中,`@RequestMapping`注解是实现请求映射的关键,它将HTTP请求映射到相应的处理器方法上。本文将深入探讨`@RequestMapping`注解的工作原理、使用方法以及最佳实践,为开发者提供一份详尽的技术干货。
143 2
|
2月前
|
前端开发 Java Spring
探索Spring MVC:@Controller注解的全面解析
在Spring MVC框架中,`@Controller`注解是构建Web应用程序的基石之一。它不仅简化了控制器的定义,还提供了一种优雅的方式来处理HTTP请求。本文将全面解析`@Controller`注解,包括其定义、用法、以及在Spring MVC中的作用。
59 2
|
2月前
|
XML 监控 安全
深入调查研究Spring AOP
【11月更文挑战第15天】
49 5