gpt4 book ai didi

java - 创建自定义 AbstractProcessor 并与 Eclipse 集成

转载 作者:IT老高 更新时间:2023-10-28 20:29:37 28 4
gpt4 key购买 nike

我正在尝试创建一个新的注释,我将使用它来进行一些运行时接线,但是,出于多种原因,我想在编译时通过一些基本检查来验证我的接线是否成功。

假设我创建了一个新注解:

@Target(ElementType.FIELD)
@Retention(RetentionPolicy.RUNTIME)
public @interface CustomAnnotation{
}

现在我想在编译时进行某种验证,例如检查 CustomAnnotation 注释的字段是否属于特定类型:ParticularType。我正在使用 Java 6,所以我创建了一个 AbstractProcessor:

@SupportedAnnotationTypes("com.example.CustomAnnotation")
public class CompileTimeAnnotationProcessor extends AbstractProcessor {

@Override
public boolean process(Set<? extends TypeElement> annotations,
RoundEnvironment roundEnv) {
Set<? extends Element> elements = roundEnv.getElementsAnnotatedWith(CustomAnnotation.class);
for(Element e : elements){
if(!e.getClass().equals(ParticularType.class)){
processingEnv.getMessager().printMessage(Kind.ERROR,
"@CustomAnnotation annotated fields must be of type ParticularType");
}
}
return true;
}

}

然后,根据我找到的一些说明,我创建了一个文件夹 META-INF/services 并创建了一个文件 javax.annotation.processing.Processor 内容:

 com.example.CompileTimeAnnotationProcessor

然后,我将项目导出为 jar。

在另一个项目中,我构建了一个简单的测试类:

public class TestClass {
@CustomAnnotation
private String bar; // not `ParticularType`
}

我将 Eclipse 项目属性配置如下:

  • 设置 Java 编译器 -> 注释处理:“启用注释处理”和“在编辑器中启用处理”
  • 设置 Java 编译器 -> 注释处理 -> 工厂路径以包含我导出的 jar 并在高级下检查我的完全合格的类是否显示。

我点击了“应用”,Eclipse 提示重建项目,我点击了 OK ——但没有抛出错误,尽管有注释处理器。

我哪里做错了?


我使用 javac as

运行它
javac -classpath "..\bin;path\to\tools.jar" -processorpath ..\bin -processor com.example.CompileTimeAnnotationProcessor com\test\TestClass.java

有输出

@CustomAnnotation annotated fields must be of type ParticularType

最佳答案

要在编辑器中显示错误,需要在 printMessage 函数中标记导致错误的 Element。对于上面的例子,这意味着编译时检查应该使用:

processingEnv.getMessager().printMessage(Kind.ERROR,
"@CustomAnnotation annotated fields must be of type ParticularType",
e); // note we explicitly pass the element "e" as the location of the error

关于java - 创建自定义 AbstractProcessor 并与 Eclipse 集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6686774/

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