Sorunların en hayati olmadığını biliyorum, ama javadoc yorum bloğunu ek açıklamadan önce veya sonra koyabileceğimi fark ettim. Bir kodlama standardı olarak neyi kabul etmek isteriz?
/**
* This is a javadoc comment before the annotation
*/
@Component
public class MyClass {
@Autowired
/**
* This is a javadoc comment after the annotation
*/
private MyOtherClass other;
}