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() );