它可能看起来像重复的问题,但我已经发布了声纳规则Compliant one建议的代码示例。使用SonarQube评估以下突出显示的代码时,会导致squid:S1948规则违规。
结果,
仍然是一个谜,为什么它显示违反合规代码,PLZ澄清。
更新
即使使用sonar.java.binaries
Sonar Scan是成功的,但会抛出类加载器警告:
08:26:44.984 INFO - Java bytecode scan...
08:26:44.992 WARN - Class 'dummyserial/Address' is not accessible through the C
lassLoader.
08:26:44.993 WARN - Class 'dummyserial/Person' is not accessible through the Cl
assLoader.
08:26:44.993 WARN - Class 'dummyserial/Address' is not accessible through the C
lassLoader.
08:26:44.994 WARN - Class 'dummyserial/Person' is not accessible through the Cl
assLoader.
08:26:44.994 WARN - Class 'dummyserial/Address' is not accessible through the C
lassLoader.
08:26:44.997 WARN - Class 'dummyserial/Person' is not accessible through the Cl
assLoader.
08:26:44.998 INFO - Java bytecode scan done: 14 ms
答案 0 :(得分:5)
如前所述,您应填写sonar.java.binaries
属性以允许字节码分析和符号解析。填写此属性后,分析不会引起该案件的任何问题。
现在,当我们无法解析字段的符号类型时,我们提出了一个问题确实很烦人。我创建了以下故障单来处理该问题:SONARJAVA-1266