Java 注释处理器未在生成的源中生成文件
Java annotation processor not generating file in generated sources
我正在编写一个简单的 java 注释处理器,它使用 JavaPoet 生成 java class,然后将其写入文件管理器。
@AutoService(Processor.class)
public class ConfigProcessor extends AbstractProcessor {
private Types typeUtils;
private Elements elementUtils;
private Filer filer;
private Messager messager;
@Override
public synchronized void init(ProcessingEnvironment processingEnv) {
super.init(processingEnv);
typeUtils = processingEnv.getTypeUtils();
elementUtils = processingEnv.getElementUtils();
filer = processingEnv.getFiler();
messager = processingEnv.getMessager();
}
@Override
public Set<String> getSupportedAnnotationTypes() {
Set<String> annotataions = new LinkedHashSet<String>();
annotataions.add(Config.class.getCanonicalName());
return annotataions;
}
@Override
public SourceVersion getSupportedSourceVersion() {
return SourceVersion.latestSupported();
}
@Override
public boolean process(Set<? extends TypeElement> annotations,
RoundEnvironment roundEnv) {
for (Element annotatedElement : roundEnv.getElementsAnnotatedWith(RemoteConfig.class)) {
TypeSpec configImpl = // generating
JavaFile javaFile = JavaFile.builder(elementUtils.getPackageOf(annotatedElement).getQualifiedName().toString(),
configImpl)
.build();
try {
javaFile.writeTo(filer);
} catch (IOException e) {
messager.printMessage(Diagnostic.Kind.ERROR,
"Failed to generate implementation",
annotatedElement);
return true;
}
}
return true;
}
}
此注释处理器将文件保存到 target/classes/mypackage
而不是 target/generated-sources/annotations/mypackage
我已经尝试将 Maven 编译器插件中的 generatedSourcesDirectory
目录设置为生成的源目录,但它仍然在 classes 文件夹中生成它。
如何将生成的 classes 保存在 generated-sources 文件夹中?
我遇到了完全相同的问题,而且解决方案看起来很奇怪。如果我仅通过设置属性来配置 maven-compiler-plugin,它总是直接在 target/classes 中生成源代码,但是当我在插件部分明确定义 maven-compiler-plugin 时,我的代码会在 target/generated-sources/annotations[ 中生成=12=]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
这是一个示例,它工作正常,当您删除插件时,同样的问题会发生:
https://github.com/sockeqwe/annotationprocessing101
我正在编写一个简单的 java 注释处理器,它使用 JavaPoet 生成 java class,然后将其写入文件管理器。
@AutoService(Processor.class)
public class ConfigProcessor extends AbstractProcessor {
private Types typeUtils;
private Elements elementUtils;
private Filer filer;
private Messager messager;
@Override
public synchronized void init(ProcessingEnvironment processingEnv) {
super.init(processingEnv);
typeUtils = processingEnv.getTypeUtils();
elementUtils = processingEnv.getElementUtils();
filer = processingEnv.getFiler();
messager = processingEnv.getMessager();
}
@Override
public Set<String> getSupportedAnnotationTypes() {
Set<String> annotataions = new LinkedHashSet<String>();
annotataions.add(Config.class.getCanonicalName());
return annotataions;
}
@Override
public SourceVersion getSupportedSourceVersion() {
return SourceVersion.latestSupported();
}
@Override
public boolean process(Set<? extends TypeElement> annotations,
RoundEnvironment roundEnv) {
for (Element annotatedElement : roundEnv.getElementsAnnotatedWith(RemoteConfig.class)) {
TypeSpec configImpl = // generating
JavaFile javaFile = JavaFile.builder(elementUtils.getPackageOf(annotatedElement).getQualifiedName().toString(),
configImpl)
.build();
try {
javaFile.writeTo(filer);
} catch (IOException e) {
messager.printMessage(Diagnostic.Kind.ERROR,
"Failed to generate implementation",
annotatedElement);
return true;
}
}
return true;
}
}
此注释处理器将文件保存到 target/classes/mypackage
而不是 target/generated-sources/annotations/mypackage
我已经尝试将 Maven 编译器插件中的 generatedSourcesDirectory
目录设置为生成的源目录,但它仍然在 classes 文件夹中生成它。
如何将生成的 classes 保存在 generated-sources 文件夹中?
我遇到了完全相同的问题,而且解决方案看起来很奇怪。如果我仅通过设置属性来配置 maven-compiler-plugin,它总是直接在 target/classes 中生成源代码,但是当我在插件部分明确定义 maven-compiler-plugin 时,我的代码会在 target/generated-sources/annotations[ 中生成=12=]
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>
</plugins>
</build>
这是一个示例,它工作正常,当您删除插件时,同样的问题会发生: https://github.com/sockeqwe/annotationprocessing101