在spring aop实例中我们通过配置xml文件来实现AOP,这里学习使用annotation来实现,使用annotation其实就是指明具体的aspect,pointcut和advice。
1.申明一个切面(用一个类来实现)
在这个切面里,包括了advice和pointcut
AdviceMethods.java
package com.bijian.study.spring.aop.schema; import org.aspectj.lang.annotation.Aspect; import org.aspectj.lang.annotation.Before; import org.aspectj.lang.annotation.Pointcut; @Aspect //指明这个类表示的是切面 public class AdviceMethods { /* 这里特别需要注意 (1)@Pointcut很明显就是定义切入点的. (2)后面的execution中的解释在后面说明 (3)这里定义了一个空实现的方法,原因在于,这个方法是标识性的.不做具体的实现,不会被调用,没有参数也没有返回值,主要是,spring只支持方法的切入,所以用方法来标识 */ //@Pointcut(value="execution(* greetTo(..))") //@Pointcut(value="execution(* com.bijian.study.spring..*.greetTo(..))") //@Pointcut(value="execution(public * com.bijian.study.spring..*.greetTo(..))") @Pointcut(value="execution(public * com.bijian.study.spring..*.greetTo(..)) || execution(public * com.bijian.study.spring..*.greetToo(..))") public void xointcut() {} /* (1)@Before表示的是前置的通知.前面已经说过了.不多解释 (2)后面的参数表示的是这个通知添加的切入点.这里就是那个标识性的方法名 (3)下面的方法就是通知的实现,我们这里只是打印一句话来演示 */ @Before(value="xointcut()") public void preGreeting() { System.out.println("--how are you!--"); } }
2.配置文件beans.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-3.0.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"> <!-- 我们通过使用aspectj的注解来实现AOP.所以这里必须首先启用Spring对基于@AspectJ aspects的配置支持, 自动代理(autoproxying)基于通知是否来自这些切面。 --> <aop:aspectj-autoproxy/> <bean id="adviceMethods" class="com.bijian.study.spring.aop.schema.AdviceMethods"/> <bean id="naiveWaiter" class="com.bijian.study.spring.aop.NaiveWaiter"/> <bean id="naughtyWaiter" class="com.bijian.study.spring.aop.NaughtyWaiter"/> </beans>
3.接口Waiter.java
package com.bijian.study.spring.aop; public interface Waiter { public void greetTo(String name); public void greetToo(String name); }
4.接口实现类NaiveWaiter.java
package com.bijian.study.spring.aop; public class NaiveWaiter implements Waiter{ @Override public void greetTo(String name) { System.out.println("NavieWaiter:greet to " + name); } @Override public void greetToo(String name) { System.out.println("NavieWaiter:greet too " + name); } }
5.接口实现类NaughtyWaiter.java
package com.bijian.study.spring.aop; public class NaughtyWaiter implements Waiter{ @Override public void greetTo(String name) { System.out.println("NaughtyWaiter:greet to " + name); } @Override public void greetToo(String name) { System.out.println("NaughtyWaiter:greet too " + name); } }
6.测试类Test.java
package com.bijian.study.spring.aop.schema; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; import com.bijian.study.spring.aop.Waiter; public class Test { public static void main(String[] args) { String configPath = "com/bijian/study/spring/aop/schema/beans.xml"; ApplicationContext ctx = new ClassPathXmlApplicationContext(configPath); Waiter naiveWaiter = (Waiter)ctx.getBean("naiveWaiter"); Waiter naughtyWaiter = (Waiter)ctx.getBean("naughtyWaiter"); naiveWaiter.greetTo("John"); naughtyWaiter.greetTo("Tom"); naiveWaiter.greetToo("John"); naughtyWaiter.greetToo("Tom"); } }
运行结果:
--how are you!-- NavieWaiter:greet to John --how are you!-- NaughtyWaiter:greet to Tom --how are you!-- NavieWaiter:greet too John --how are you!-- NaughtyWaiter:greet too Tom
7.最后,解释下定义切入点时用到的execution
(1) @Pointcut("execution(* add*(..)) || execution(* del*(..))")
第一个 "*" 表示任意的返回值类型
"add*"表示的是任意以add开头的方法名
"(..)" 表示的是任意的参数.
"||" 表示的是或者.也就是说,任意满足上面两个条件的方法都是切入点
(2)具体看一些官方给的例子
任意公共方法的执行:
execution(public * *(..))
任何一个以“set”开始的方法的执行:
execution(* set*(..))
DE<AccountServiceDE< 接口的任意方法的执行:
execution(* com.xyz.service.AccountService.*(..))
定义在service包里的任意方法的执行:
execution(* com.xyz.service.*.*(..))
定义在service包或者子包里的任意方法的执行:
execution(* com.xyz.service..*.*(..))
在service包里的任意连接点(在Spring AOP中只是方法执行):
within(com.xyz.service.*)
在service包或者子包里的任意连接点(在Spring AOP中只是方法执行):
within(com.xyz.service..*)
实现了 DE<AccountServiceDE< 接口的代理对象的任意连接点(在Spring AOP中只是方法执行):
this(com.xyz.service.AccountService)
说明:'this'在binding form中用的更多
实现了 DE<AccountServiceDE< 接口的目标对象的任意连接点(在Spring AOP中只是方法执行):
target(com.xyz.service.AccountService)
文章来源:http://jingbo2759.blog.163.com/blog/static/9837531520099644615289/
相关推荐
Spring AOP通过两种主要实现方式提供切面功能:代理模式(Proxy)和基于注解的切面(Annotation-based AOP)。代理模式下,Spring创建一个目标对象的代理,当调用目标方法时,代理会在前后添加额外的行为。而注解...
本示例将简要介绍如何在Spring应用中实现AOP,通过实际的代码示例帮助理解其工作原理。 首先,我们要理解AOP的核心概念。AOP是一种编程范式,它允许开发者定义“切面”(Aspects),这些切面封装了特定的关注点,如...
Spring AOP主要通过两种方式实现:XML配置和注解。本实例主要探讨的是使用XML配置的方式来实现AOP。XML配置虽然相比注解方式略显繁琐,但它提供了更大的灵活性,尤其是在需要对多个类或方法应用相同通知(Advice)时...
这篇博客文章将探讨如何在Spring 2.0中使用AOP实例,特别是通过注解来实现。 首先,我们需要了解AOP的基本概念。AOP的核心是切面(Aspect),它封装了横切关注点,即那些跨越多个对象的行为或责任。在Spring中,切...
本实例将深入探讨如何在Spring AOP中实现权限控制,以提高代码的可读性和可维护性。 首先,我们要理解AOP的基本概念。AOP允许程序员定义“切面”,这些切面封装了特定的关注点,比如权限检查。然后,这些切面可以在...
在基于XML的配置方式下,Spring AOP提供了直观且灵活的声明式方法来实现这些关注点的分离,使得业务逻辑代码更为简洁。 在Spring AOP中,我们首先需要定义一个切面(Aspect),它包含了若干个通知(Advice)。通知...
本文将深入探讨如何结合Spring AOP与EhCache实现一个简单的缓存实例,以便优化Java应用的运行效率。 首先,让我们了解Spring AOP。Spring AOP是Spring框架的一部分,它允许我们在不修改业务代码的情况下,通过定义...
在提供的压缩包文件"springAOP"中,可能包含了以下内容: - **切面类(Aspect Class)**:包含切点和通知的Java类,可能使用了`@Aspect`注解。 - **目标类(Target Class)**:被AOP代理的对象,通常包含业务逻辑。...
通过Spring AOP实例,我们可以实现上述功能,提高代码的可复用性和可维护性,降低模块间的耦合度。在实际项目中,Spring AOP是不可或缺的工具,帮助开发者专注于业务逻辑,而不是重复的基础服务实现。
通过以上知识,我们可以创建一个简单的Spring AOP实例,例如创建一个日志切面,记录每个服务方法的执行时间: ```java @Aspect @Component public class LoggingAspect { @Before("execution(* ...
Spring AOP,全称为Aspect Oriented Programming,是Spring框架中的一个重要模块,主要负责处理系统中的...文件"5.SpringAOP_01"和"6.SpringAOP_02"很可能是课程的分阶段内容,涵盖了从基础概念到进阶实践的详细讲解。
本例子就是一个使用 Spring AOP 注解实现的项目,旨在展示如何在简单的环境中应用这一特性。 1. **AOP 基础概念** - **切面(Aspect)**: 包含一组相关功能的模块,这些功能在多个对象中都可能被用到,比如日志、...
本实例将介绍如何利用Spring AOP来实现自定义缓存功能。 首先,理解Spring AOP的基本概念。AOP是一种编程范式,它允许我们在不修改代码的情况下,为程序添加额外的功能,如日志记录、事务管理、安全检查等。在...
顾名思义,Before Advice会在目标对象的方法执行之前被调用,您可以通过实现org.springframework.aop.MethodBeforeAdvice接口来实现Before Advice的逻辑,接口定义如下: java 代码 1. package org.spring...
最后,Spring 1.x的AOP支持还允许自定义切点表达式,这是通过实现`org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator`类并注册到Spring容器来完成的。这种方式使得基于注解的切面...
在Java世界中,Spring框架以其强大的功能和灵活性深受开发者喜爱,尤其在面向切面编程(AOP)方面,Spring提供了两种主要的实现方式:XML配置和@AspectJ注解。本篇文章将深入探讨这两个版本的AOP实现,并结合源码...
标题提到的"Spring 使用AspectJ 实现 AOP之前置通知小例子",指的是利用AspectJ在Spring中实现AOP的一种特定类型的通知——前置通知(Before advice)。前置通知在目标方法执行之前运行,但不会阻止方法的执行。这种...
Spring AOP的After增强实现方法实例分析 Spring AOP(Aspect-Oriented Programming,面向切面编程)是一种编程技术,旨在将横切关注点从业务逻辑中分离出来,提供了一个更加灵活、可维护的架构。在Spring框架中,...
本篇将深入探讨如何利用Spring AOP来实现鉴权和日志记录。 **二、AOP基础知识** 1. **切面(Aspect)**:AOP的核心概念,它封装了关注点,如日志记录或权限验证。一个切面通常包含一个或多个通知(advice)。 2. ...