Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何使用 JavaPoet 向字段添加注释?
到目前为止,我设法探索的所有示例都是关于向类和方法添加注释。
看起来我在这里遗漏了一些非常简单的东西。
万岁,我已经想通了,所以可能对其他人有帮助:
typeSpecBuilder .addField( FieldSpec.builder(<SomeClass>, <name>) .addAnnotation(<AnnotationClass>) .addModifiers(Modifier.PUBLIC) .build() );