1. 是什么
引用网上的语言。
Checkstyle[1]是在软件开发中的一种静态代码分析工具,用来检查Java源代码是否匹配编码规则。
通俗一点来说,checkStyle是一个插件,在eclipse和idea等工具中都可以安装,然后导入一个xml格式的配置文件,可以帮你检查代码中所有不规范的行为,提升代码质量。
2. 怎么用。
在intellij 中安装CheckStyle-IDE插件
File->Setting->Plugins中安装CheckStyle-IDE插件
File->Setting->Other Settings->Check Style中配置 配置自定义Configuaration,使用
http://svn.rd.800best.com/svn/geniexpress/common/docs/%E5%BC%80%E5%8F%91%E8%A7%84%E8%8C%83/express_checks.xml
记得勾选自定义的配置文件。
File->Setting->Editor->Inspections配置CheckStyle中选择是否进行实时检查。
eclipse安装checkStyle插件:
1.Eclipse中,选择Help->Software Updates->Find and Install
2.选择 Search for new features to install 选择Next
3.选择 New Remote Site
4.输入更新地址:http://eclipse-cs.sourceforge.net/update
5. 安装后重启即可
3. 官网链接
http://checkstyle.sourceforge.net/
4. 操作方式
在选择文件内,右键-》Check Current File 即可。
tips:想要搜索哪个标签的使用方法,直接使用google,搜索checkstyle+标签名即可。
5. 常见问题
如果在checkStyle插件配置checkStyle的xml配置文件过程,遇到
Property ‘fileExtensions’ in module not exists
等类似异常,请尝试升级checkStyle版本到6.3及以上版本。
参考:http://stackoverflow.com/questions/29337949/issue-in-checkstyle-configuration-in-intellij-idea
引用博客地址:
http://wiki.rd.800best.com/pages/viewpage.action?pageId=25669617
http://www.cnblogs.com/lanxuezaipiao/p/3202169.html