成人午夜激情影院,小视频免费在线观看,国产精品夜夜嗨,欧美日韩精品一区二区在线播放

Findbugs中的過濾

2017-02-14 09:32:40來源:威易網作者:joe

我們部分產品中發現Findbugs檢查有以下錯誤:Type MS_SHOULD_BE_FINAL

我們部分產品中發現Findbugs檢查有以下錯誤:

Type MS_SHOULD_BE_FINAL

This static field public but not final, and could be changed by malicious code or by accident from another package. The field could be made final to avoid this vulnerability.

這個類型的錯誤屬于設計上不夠嚴謹,但由于歷史代碼修改比較多,所以我們可以對這個錯誤告警進行過濾。

具體方法如下:

增加一個過濾文件

我這里命名為:findbugs-exclude.xml

<FindBugsFilter>
    <Match>
        <Bug pattern="MS_SHOULD_BE_FINAL" />
    </Match>
</FindBugsFilter>

修改pom.xml

在findbugs中增加配置:

<plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>findbugs-maven-plugin</artifactId>
    <version>3.0.4</version>
    <configuration>
         <excludeFilterFile>findbugs-exclude.xml</excludeFilterFile>
    </configuration>
</plugin>

現在這個問題就不會再告警了。

不過,我們還是要嚴謹的對待Findbugs和PMD提醒我們的問題。

關鍵詞:Findbugs

相關閱讀:

主站蜘蛛池模板: 灌云县| 洛川县| 太仆寺旗| 陆川县| 平南县| 临湘市| 兴文县| 巨鹿县| 小金县| 沙坪坝区| 商城县| 普陀区| 徐州市| 津南区| 南投市| 巴塘县| 临颍县| 喜德县| 海口市| 阿克| 通道| 五家渠市| 溧水县| 瑞安市| 南溪县| 栾城县| 隆昌县| 水富县| 绥中县| 永新县| 武穴市| 镇坪县| 南召县| 平度市| 辽阳市| 嵩明县| 奉新县| 中方县| 昌都县| 乌兰浩特市| 阆中市|