How to get intellij idea to recognize methods generated by my annotation processor

问题描述 投票:0回答:0

我创建了一个多模块项目,即 AppModsApp 包含主要方法,Mods 包含注释及其注释处理器。 Project Structure

我在 App 模块中定义的名为 Test 的类上使用了注释,并在 main 方法中进一步创建了它的一个实例,还调用了由注释处理器生成的 getTest 方法。 Test class Main method

我面临的问题是该方法无法被intellij识别并显示错误,但该项目编译并运行正常。 Run results

如何让 intellij idea 识别由自定义注释处理器生成的方法?

#注:注解处理器使用AST修饰生成方法 Annotation processor

java intellij-idea annotations abstract-syntax-tree annotation-processing
© www.soinside.com 2019 - 2024. All rights reserved.