CodeNarc supress JdbcREsultSetReference似乎不起作用

时间:2017-10-26 07:56:07

标签: groovy codenarc

我的课程类似于这一课:

import org.springframework.jdbc.core.RowMapper
import java.sql.ResultSet

class DataMapper implements RowMapper<Data> {

    @Override
    @SupressWarnings('JdbcResultSetReference')
    Data mapRow(ResultSet resultSet, int rowNum) throws SQLException {
        // get some values from resultSet and return desired Data
    }
}

这是使用groovy迁移一些数据的一次性脚本,因此我想抑制codenarc规则。在ruleSet中包含jdbc规则,我不想禁用它们,因为它们扫描了所有项目。

<ruleset xmlns="http://codenarc.org/ruleset/1.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://codenarc.org/ruleset/1.0 
    http://codenarc.org/ruleset-schema.xsd"
    xsi:noNamespaceSchemaLocation="http://codenarc.org/ruleset-schema.xsd">

    <description>Static analysis rule set for Groovy sources</description>

    <!-- not related rules -->
    <ruleset-ref path='rulesets/jdbc.xml>
</ruleset>

我在junit测试中运行静态分析并得到此错误:

[codenarc] File: com/example/migrate/DataMapper.groovy
[codenarc]     Violation: Rule=JdbcResultSetReference P=2 Line=5 Msg=[Found reference to java.sql.ResultSet] Src=[import java.sql.ResultSet]
[codenarc]     Violation: Rule=JdbcResultSetReference P=2 Line=5 Msg=[Found reference to java.sql.ResultSet] Src=[import java.sql.ResultSet]
[codenarc] [CodeNarc (http://www.codenarc.org) v1.0]
[codenarc] CodeNarc completed: (p1=0; p2=2; p3=0) 5929ms

我尝试将@SupressWarnings移到课堂上,但它仍然告诉我,我违反了规则。所以问题是:如何使这种抑制起作用?

1 个答案:

答案 0 :(得分:1)

不幸的是,这些规则会查看import语句,而@SuppressWarnings对这些规则不起作用。

一种选择是为Mapper类禁用该规则: 例如在你的codenarc.properties中:

    JdbcResultSetReference.doNotApplyToClassNames = *Mapper

或在规则集文件中的规则上设置相同的属性。