编程语言
首页 > 编程语言> > java-Spring AOP,切入点表达式:具有特定参数的注释

java-Spring AOP,切入点表达式:具有特定参数的注释

作者:互联网

我有使用方法clear()的Aspect类.

@Aspect  
public class Clear 
{
   @After("@annotation(org.springframework.transaction.annotation.Transactional)")  
   public void clear()  
   {  
      // do smth  
   }
}  

现在我想在每次执行带有注解@Transactional的方法后使用readOnly = true调用此方面

@Transactional(readOnly = true)  
public void someMethod()  
{ 
   //... 
}  

有没有自定义注释的方法?

解决方法:

我觉得你很亲密.

在您的clear方法中,您应该采用JoinPoint类型的参数. Spring将在运行时自动填充此参数,并使用它可以获取特定连接点的详细信息,包括java.lang.reflect.Method,其中将包含您要使用的注释.

我在想这样的事情:

@Aspect  
public class Clear 
{
   @After("@annotation(org.springframework.transaction.annotation.Transactional)")  
   public void clear(final JoinPoint joinPoint)  
   {  
      final Method method = ((MethodSignature) joinPoint.getSignature()).getMethod();
      final Transactional txAnnotation = methood.getAnnotation(Transactional.class);
      final boolean isReadOnly = txAnnotation.readOnly();

      //do conditional work based on isReadOnly
   }
}

标签:spring-aop,aspectj,annotations,spring,java
来源: https://codeday.me/bug/20191030/1969557.html