《Spring》Aspectj实现Aop相关通知

方式一:基于aspectj的xml配置实现

1、除了导入基本spring的jar以外还需要导入aop所需jar包


	
	    org.springframework
	    spring-context
	    5.1.5.RELEASE
	
	
	
	    org.springframework
	    spring-aspects
	    5.1.5.RELEASE
	
	
	
	    org.aspectj
	    aspectjweaver
	    1.9.2
	
	
	
	    aopalliance
	    aopalliance
	    1.0
	
	
	
	    junit
	    junit
	    4.12
	    test
	
	
	
	    org.springframework
	    spring-webmvc
	    5.1.5.RELEASE
	

 

2、创建spring核心配置文件,并导入aop的约束

  

3、使用表达式配置切入点

  • execution(<访问修饰符>?<返回类型><方法名>(<参数>)<异常>)
示例1:execution(* com.wyj.UserService.add(..))当前类指定方法

示例2:execution(* com.wyj.UserService.*(..))当前类所有方法

示例3:execution(* *.*(..))所有类所有方法

示例4:execution(* *.save*(..))所有类所有以save开头法人方法
    • 访问修饰符:public、private、protect、*(通配符)

4、配置

  • 配置两个对象
public class AopService {
	private String name;
	public void setName(String name) {
		this.name = name;
	}
	public void sayBye() {
		// TODO Auto-generated method stub
		System.out.println("Bye "+name);
	}
	public void sayHello() {
		// TODO Auto-generated method stub
		System.out.println("Hello "+name);
	}
}
public class AopServiceAdvice{
	public void before() {
		System.out.println("*调用方法之前*");
	}
	public void after() {
		System.out.println("**调用方法之后**");
	}
	public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
		System.out.println("***执行方法之前***");
		proceedingJoinPoint.proceed();
		System.out.println("***执行方法之后***");
	}

}
  • 配置两个基本bean并注入属性值

	

  • 配置aop操作


    
    
    
    
        
        
        
    
  • 测试和结果展示
@Test
public void aopBaseTheory() {
    ApplicationContext ac = new ClassPathXmlApplicationContext("conf/spring.xml");
    AopService aopService =  (AopService)ac.getBean("aopService");
    aopService.sayHello();
    aopService.sayBye();
}

结果 

*调用方法之前*
***执行方法之前***
Hello 吴玉军
***执行方法之后***
**调用方法之后**
*调用方法之前*
***执行方法之前***
Bye 吴玉军
***执行方法之后***

方式一:基于aspectj的注解实现

1、创建对象


      

2、在spring核心配置文件中,开启aop操作

3、在增强类使用注解实现

@Aspect
public class AopServiceAdvice{
	
	@Before(value="execution(* com.wyj.RealizeAOP.model.AopService.sayHello(..))")
	public void before() {
		System.out.println("*调用方法之前*");
	}
	@After(value="execution(* com.wyj.RealizeAOP.model.AopService.sayHello(..))")
	public void after() {
		System.out.println("**调用方法之后**");
	}
	@Around(value="execution(* com.wyj.RealizeAOP.model.AopService.sayHello(..))")
	public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable {
		System.out.println("***执行方法之前***");
		proceedingJoinPoint.proceed();
		System.out.println("***执行方法之后***");
	}

}

4、测试和结果展示

@Test
public void aopBaseTheory() {
    ApplicationContext ac = new ClassPathXmlApplicationContext("conf/spring.xml");
    AopService aopService =  (AopService)ac.getBean("aopService");
    aopService.sayHello();
}
***执行方法之前***
*调用方法之前*
Hello 吴玉军
***执行方法之后***
**调用方法之后**


 

你可能感兴趣的:(Spring)