gpt4 book ai didi

java - ajc 通过命令行无法识别 .ajspectj 语法

转载 作者:行者123 更新时间:2023-12-01 10:40:47 32 4
gpt4 key购买 nike

当尝试使用 ajc 和命令行编译方面文件时,尝试编译 *.aj 文件(方面语法)时出现错误

编译 *.java 方面(使用注释)时工作正常

方面注释 - TestAspect.java:

@Aspect
public class TestAspect {

@Pointcut("execution(* TestTarget.test(..))")
void test() {}

@Before("test()")
public void advice(JoinPoint joinPoint) {
System.out.printf("TestAspect.advice() called on '%s'%n", joinPoint);

}
}

方面语法 - TestAspect.aj:

    public aspect TestAspect {

pointcut test() : execution(* TestTarget.test*(...));

before() : test()
public void advice(JoinPoint joinPoint) {
System.out.printf("TestAspect.advice() called on '%s'%n", joinPoint);
}
}

编译 TestAspect.aj 时使用以下命令:

ajc -1.8 -sourceroots ./ -cp aspectjrt.jar;

并出现以下错误:

C:\****\TestAspect.aj:3 [error] Syntax error on token "...", "name pattern" expected
pointcut test() : execution(* TestTarget.test*(...));
^
C:\****\TestAspect.aj:6 [error] Syntax error on token "public", "{" expected
public void advice(JoinPoint joinPoint) {
^
C:\****\TestAspect.aj:7 [error] joinPoint cannot be resolved to a variable
System.out.printf("TestAspect.advice() called on '%s'%n", joinPoint);


3 errors

我在谷歌上搜索了一个多小时没有找到任何解决方案。即使文档中没有。

我可能会遗漏一些东西,很高兴获得一些帮助。

最佳答案

解决方案:

public aspect TestAspect {

pointcut test() : execution(* TestTarget.test*(..));

before() : test() {
System.out.printf("TestAspect.advice() called on '%s'%n", thisJoinPoint);
}
}

1) 请注意 test() 参数通配符只有 2 个点,而不是 3 个!

2) 建议正文没有方法签名,您可以引用 thisJoinPoint 而无需将其作为参数传递

(注意我正在谈论 *.aj 文件)

关于java - ajc 通过命令行无法识别 .ajspectj 语法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34415210/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com