Java - 注释处理器 - 未调用方法进程

Java - Annotation processor - method process not called

我正在尝试实施 AnnotationProcessor。我正在关注 this tutorial

我能够调试注释处理器,调试器转到方法:initgetSupportedAnnotationTypesgetSupportedOptionsgetSupportedSourceVersion,但它不会转到process 方法。

我无法在互联网上找到有用的东西。能否请您告诉我为什么会发生这种情况以及如何解决它?

谢谢。

我刚刚发现为了 运行 process 方法。至少有一个元素必须使用 getSupportedAnnotationTypes.

中设置的注释进行注释