0

切入点声明:

@Pointcut(value="com.someapp.someservice.someOperation() && args(t,req)",argNames="t,req")
private void logOperationArg(final String t,final String req)
{
}

建议声明未编译:

@Before(value="logOperationArg(t,req)")
public void logBeforeOperationAdvice(JoinPoint jp, final String t, final String req){
...
}

使用 Aspectj-maven-plugin(1.5 版本)编译 Aspect 时,出现错误"can not build thisJoinPoint lazily for this advice since it has no suitable guard [Xlint:noGuardForLazyTjp]"

但同样的建议在没有 JoinPoint 参数的情况下编译。

建议声明编制:

@Before(value="logOperationArg(t,req)")
public void logBeforeOperationAdvice(final String t, final String req){
...
}
4

1 回答 1

1

Spring AOP仅支持method join points,因为它基于在dynamic proxies需要时创建代理对象(例如,如果您使用 ApplicationContext,它将在从 bean 加载后创建BeanFactory

使用execution()语句来匹配作为方法执行的连接点。

例如:

class LogAspect {

@Before("execution(* com.test.work.Working(..))")
public void beginBefore(JoinPoint join){

System.out.println("This will be displayed before Working() method will be executed");
}

现在如何声明您的 BO:

//.. declare interface

然后:

class BoModel implements SomeBoInterface {

public void Working(){
System.out.println("It will works after aspect");
     }
}

execution()statement 是一个 PointCut 表达式,用于说明应在何处应用您的建议。

如果你喜欢使用@PointCut,你可以这样做:

class LogAspect {

//define a pointcut
@PointCut(
        "execution(* com.test.work.SomeInferface.someInterfaceMethod(..))")
     public void PointCutLoc() {
}

@Before("PointCutLoc()")
public void getBefore(){
System.out.println("This will be executed before someInterfaceMethod()");
      }

}

第2部分:

此外,错误表明您没有对您的建议采取保护措施。从技术上讲,guard 使您的代码更快,因为您不需要在每次执行时都构造 thisJoinPoint。所以,如果它没有意义,你可以尝试忽略它

canNotImplementLazyTjp = ignore
multipleAdviceStoppingLazyTjp=ignore
noGuardForLazyTjp=ignore
于 2014-01-05T07:47:20.133 回答