4

我有Aspect方法课clear()

@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()  
{ 
   //... 
}  

没有自定义注释有没有办法做到这一点?

4

1 回答 1

4

我认为你很接近。

在你的clear方法中,你应该接受一个 type 的参数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
   }
}
于 2013-07-15T16:19:12.183 回答