ฉันรู้ว่ามันไม่ใช่ประเด็นสำคัญที่สุดของปัญหา แต่ฉันเพิ่งรู้ว่าฉันสามารถใส่บล็อกความคิดเห็น javadoc ก่อนหรือหลังการเพิ่มความคิดเห็น สิ่งที่เราต้องการนำมาใช้เป็นมาตรฐานการเข้ารหัส?
/**
 * This is a javadoc comment before the annotation 
 */
@Component
public class MyClass {
    @Autowired
    /**
     * This is a javadoc comment after the annotation
     */
    private MyOtherClass other;
}