没有为 Lombok getter 和 setter 生成 Javadoc

Javadoc not generated for Lombok getter and setter

我在为 Lombok getters 和 setters 生成 Javadoc 时遇到问题。我已经尝试了这两个建议 here。示例字段及其文本如下:

/**  
 *  Identifier of the client
 * 
 *  @param clientID changes the id of the client 
 *  @return id of the client
 */
@Getter @Setter private Integer clientID;

但是,我在生成的 Javadoc 中既没有看到 getter 也没有看到 setter。我在 Eclipse 上使用 'protected' 可见性(项目 -> 生成 Javadoc...)。我的龙目岛版本是 1.12.4。有什么建议么?

javadoc 功能在 eclipse javadoc 视图或悬停中不起作用。您可以通过 运行 delombok on the code first and then run the javadoc compiler, as is hinted on the feature page near the bottom.

生成 javadoc

披露:我是 Lombok 开发人员。