我正在尝试通过 Java 8 中的编译时注释处理为我的源代码生成一个配置文件。
据我了解,对于getSupportedAnnotationTypes
类中列出的每个注释,处理器都会被调用一次。
@Override
public Set<String> getSupportedAnnotationTypes() {
Set<String> set = new LinkedHashSet<>();
set.add(MCPlugin.class.getCanonicalName());
set.add(MCAPIVersion.class.getCanonicalName());
set.add(MCAuthor.class.getCanonicalName());
set.add(MCAPIVersion.class.getCanonicalName());
set.add(MCDepend.class.getCanonicalName());
set.add(MCLoad.class.getCanonicalName());
set.add(MCLoadBefore.class.getCanonicalName());
set.add(MCSoftDepend.class.getCanonicalName());
set.add(MCCommand.class.getCanonicalName());
return set;
}
实际上,我不想用一个注释处理器处理所有这些注释(这是正确的方法吗?),因为它会导致MCCommand
注释出现问题。所以我的计划是创建另一个注释处理器,它只处理MCCommand
注释。
我的问题是,两个处理器的输出应该进入同一个输出文件。(这甚至可能吗?)
我已经尝试过像这样重新打开资源文件(这也是我首先打开它的方式):
FileObject file = filer.createResource(StandardLocation.SOURCE_OUTPUT, "", "config.yml");
这只会产生错误或覆盖现有文件。
TlDr:如何让我的注释处理器编辑另一个注释处理器生成的文件?