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.
我知道有静态分析工具,例如FindBugs(其中有很多),它们静态地进行代码分析,也可以作为持续构建过程的一部分进行调度。这些工具对代码部分进行操作。评论同样重要,如果可以检测到任何差异并将其报告给相关的开发人员(作为构建过程的一部分),那就太好了。
我正在寻找一种功能,其中工具还可以标记缺少适当注释的实例。我指的是标准的 javadoc 样式注释,如类、方法等。
根据我发现的一篇文章,Checkstyle可以做 Javadoc 验证
http://www.techrepublic.com/article/three-tools-that-make-java-code-review-painless-and-effective/5031836
... 与 PMD 不同,Checkstyle 可以检查 Javadoc 注释;...