我有类似于这个的类:
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
去上课,但它仍然告诉我我违反了规则。所以问题是:如何让这种压制发挥作用?