我正在尝试访问我的 SonarQube 插件Property
的扩展类中的一个。RulesDefinition
我在扩展的类中定义了该属性SonarPlugin
:
@Properties(
@Property(key="sonar.root.path", name="Path to installation", description = "Root directory of the Master plugin installation directory")
)
该属性已正确创建,我在 SQ 的配置页面中设置了它的值,但不知何故,我无法从RulesDefinition
在覆盖define(Context context)
方法中使用此代码扩展的类访问它:
// Get access to the Properties
Settings settings = new Settings(new PropertyDefinitions(new MyPlugin()));
if(settings.hasKey("sonar.root.path")) {
// Never enters here
String path = settings.getString("sonar.root.path");
} else {
// If always returns false and enters here
LOG.info("No property defined with the provided key.");
}
// To double-check
LOG.info("The value: " + settings.getString("sonar.root.path")); // Returns null
LOG.info("Has default value: " + settings.hasDefaultValue("sonar.root.path"));
// Returns false, or true if I provide a default value, proving it can
// access the property - so the if condition above should have returned true
奇怪的是,我已经通过 REST Web 服务检查了属性,并且可以确认显示的值是网页中设置的值,但是如果我提供默认值(如上文所述),则日志显示默认值值而不是在网页中输入的值(并通过 Web 服务显示)。
也许问题出在我获取Settings
对象的方式上。将不胜感激提供的任何帮助。提前致谢。