我遇到了为Lombok getter和setter生成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'可见性(Project - > Generate Javadoc ...)。我的龙目岛版本是1.12.4。有什么建议?
答案 0 :(得分:15)
javadoc功能在eclipse javadoc视图中不起作用或悬停。您可以先在代码上运行delombok生成javadoc,然后运行javadoc编译器,如feature page near the bottom上所示。
披露:我是龙目岛的开发者。