Spring - AOP - AspectJ in XML configuration示例

原文地址:https://mkyong.com/spring3/spring-aop-aspectj-in-xml-configuration-example

在本教程中,我们向您展示如何将Spring - AOP - AspectJ annotation示例转换为基于XML的配置。

对于那些不喜欢注释或使用JDK 1.4的用户,您可以改用基于XML的AspectJ。

再次查看上一个customerBo接口,定义了很少的方法,稍后您将了解如何通过XML文件中的AspectJ拦截它。

package com.mkyong.customer.bo;

public interface CustomerBo {

    void addCustomer();
    
    String addCustomerReturnValue();
    
    void addCustomerThrowException() throws Exception;
    
    void addCustomerAround(String name);
}

1. AspectJ = @Before

AspectJ @Before示例。

package com.mkyong.aspect;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;

@Aspect
public class LoggingAspect {

    @Before("execution(* com.mkyong.customer.bo.CustomerBo.addCustomer(..))")
    public void logBefore(JoinPoint joinPoint) {
        //...
    }

}

XML中与等效的功能。






  

     
     

     
            
  


2. AspectJ = @After

AspectJ @After示例。

package com.mkyong.aspect;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.After;

@Aspect
public class LoggingAspect {

    @After("execution(* com.mkyong.customer.bo.CustomerBo.addCustomer(..))")
    public void logAfter(JoinPoint joinPoint) {
        //...
    }

}

XML中的等效功能,带有






  

     
     

     
            
  


3. AspectJ = @AfterReturning

AspectJ @AfterReturning示例。

package com.mkyong.aspect;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.AfterReturning;

@Aspect
public class LoggingAspect {

  @AfterReturning(
   pointcut = "execution(* com.mkyong.customer.bo.CustomerBo.addCustomerReturnValue(..))",
   returning= "result")
   public void logAfterReturning(JoinPoint joinPoint, Object result) {
    //...
   }

}

XML中的等效功能,带有






  

    
    

    
            
  


4. AspectJ = @AfterReturning

AspectJ @AfterReturning示例。

package com.mkyong.aspect;

import org.aspectj.lang.JoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.AfterThrowing;

@Aspect
public class LoggingAspect {

  @AfterThrowing(
   pointcut = "execution(* com.mkyong.customer.bo.CustomerBo.addCustomerThrowException(..))",
   throwing= "error")
  public void logAfterThrowing(JoinPoint joinPoint, Throwable error) {
    //...
  }
}

XML中的等效功能,带有






  

    
    
            
    
            
  


5. AspectJ = @Around

AspectJ @Around示例。

package com.mkyong.aspect;

import org.aspectj.lang.ProceedingJoinPoint;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Around;

@Aspect
public class LoggingAspect {

    @Around("execution(* com.mkyong.customer.bo.CustomerBo.addCustomerAround(..))")
    public void logAround(ProceedingJoinPoint joinPoint) throws Throwable {
        //...
    }
    
}

XML中的等效功能,带有






   

    
   
            
   
            
  


完整的XML示例

请参阅完整的基于AspectJ XML的配置文件。












  

    
    

    

    
    

    

    
    

    

    
    

    

    
    

    

  




你可能感兴趣的:(Spring - AOP - AspectJ in XML configuration示例)