繁体   English   中英

如何排除特定findbugs规则的包

[英]How do I exclude a package for a specific findbugs rule

我已经尝试了几次迭代,但这是我最新的

<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
  <Match>
    <Package name="~com[.]xenoterracide[.]rpf[.]([.].*)?"/>
    <Bug code="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  </Match>
</FindBugsFilter>

最终我想得到所有匹配的包(glob语法)

com.xenoterracide.rpf.*.ui或者只是com.xenoterracide.rpf.*

INFO] The field com.xenoterracide.rpf.character.ui.CharactersView.editDialog is transient but isn't set by deserialization [com.xenoterracide.rpf.character.ui.CharactersView] In CharactersView.java SE_TRANSIENT_FIELD_NOT_RESTORED
[INFO] The field com.xenoterracide.rpf.character.ui.CharactersView.messenger is transient but isn't set by deserialization [com.xenoterracide.rpf.character.ui.CharactersView] In CharactersView.java SE_TRANSIENT_FIELD_NOT_RESTORED
[INFO] The field com.xenoterracide.rpf.character.ui.CharactersView.repo is transient but isn't set by deserialization [com.xenoterracide.rpf.character.ui.CharactersView] In CharactersView.java SE_TRANSIENT_FIELD_NOT_RESTORED
[INFO] The field com.xenoterracide.rpf.ui.NavigationBar.messages is transient but isn't set by deserialization [com.xenoterracide.rpf.ui.NavigationBar] In NavigationBar.java SE_TRANSIENT_FIELD_NOT_RESTORED
[INFO] The field com.xenoterracide.rpf.ui.components.EditDialog.repository is transient but isn't set by deserialization [com.xenoterracide.rpf.ui.components.EditDialog] In EditDialog.java SE_TRANSIENT_FIELD_NOT_RESTORED
[INFO]

在父母中配置

  <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>findbugs-maven-plugin</artifactId>
    <version>3.0.3</version>
    <configuration>
      <effort>Max</effort>
      <threshold>Low</threshold>
      <xmlOutput>false</xmlOutput>
      <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
    </configuration>
    <executions>
      <execution>
        <phase>test-compile</phase>
        <goals>
          <goal>check</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

这可行,但相当冗长,不会扩展

<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
  <Match>
    <Class name="com.xenoterracide.rpf.character.ui.CharactersView"/>
    <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  </Match>
  <Match>
    <Class name="com.xenoterracide.rpf.character.ui.CharacterEditDialog"/>
    <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  </Match>
  <Match>
    <Class name="com.xenoterracide.rpf.ui.NavigationBar"/>
    <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  </Match>
  <Match>
    <Class name="com.xenoterracide.rpf.ui.components.EditDialog"/>
    <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  </Match>
</FindBugsFilter>

这工作,并匹配所有5个类

<?xml version="1.0" encoding="UTF-8"?>
<FindBugsFilter>
  <Match>
    <Package name="~com\.xenoterracide\.rpf[.a-zA-Z0-9]*\.ui.*"/>
    <Bug pattern="SE_TRANSIENT_FIELD_NOT_RESTORED"/>
  </Match>
</FindBugsFilter>

尝试这个:

<Package name="com\.xenoterracide\.rpf\.\*(\.ui)?"/>

更新:即使我从你的“语法”开始,这将更有意义:

<Package name="~com[.]xenoterracide[.]rpf[.][*]([.]ui)?"/>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM