1

我正在尝试访问我的 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对象的方式上。将不胜感激提供的任何帮助。提前致谢。

4

1 回答 1

3

组件设置由核心实例化,并且必须通过构造函数参数注入到您的对象中:

public class YourRulesDefinition implements RulesDefinition {
  private final Settings settings;

  public YourRulesDefinition(Settings s) {
    this.settings = s;
  }

  void yourMethod() {
    if(settings.hasKey("sonar.root.path")) {
      // ...
    }
  }
}

请注意,您永远不应该实例化核心类。它们始终可以通过构造函数注入获得。

于 2016-07-20T21:26:55.890 回答