Errors occurred during the build. Errors running builder 'Checkstyle Builder' on project

不了解CheckStyle的话请先自行百度。

更换了新的Eclipse,在使用CheckStyle检查代码的时候发现总是报错例如以下:

Errors occurred during the build.
Errors running builder 'Checkstyle Builder' on project 'AAA'.
Fileset from project "AAA" has no valid check configuration.
……

解决的方法:

1、首先确认你使用的CheckStyle检查规则是什么。

Eclipse - windows - preferences - CheckStyle 标签下查看你的默认检查规则。我的在Global Check Configurations以下默认规则是 “Rule01”。上述也能够在项目属性的CheckStyle标签下看到。

2、在项目中找到CheckStyle配置文件。

Ctrl + Shift + R 找到 .checkstyle 配置文件,在fileset 标签下找到 “check-config-name="Rule01" 




  
    
  


假设check-config-name属性值相应的不是步骤1中配置的规则,则会报错。

PS:假设配置了多个关联的project,每一个project下.checkstyle配置文件都须要检查一遍。


3、又一次刷新工作区,错误消失。



转载于:https://www.cnblogs.com/ljbguanli/p/7116844.html

你可能感兴趣的:(Errors occurred during the build. Errors running builder 'Checkstyle Builder' on project)