我正在尝试使用此代码从sonarqube上的fileName获取问题
public class SonarqubeServiceImpl implements SonarqubeService {
private final String SONAR_URL = "http://localhost:9000/";
private final String PROJECT_KEY = "refactor2";
private final String SRC_FOLDER = "src/main/java/com/uca/refactor2/activities";
private String EXECUTE_SONAR;
private String GET_ISSUES_URL = SONAR_URL + "api/issues/search?q=";
private static String POM_PATH = "pom.xml";
private RestTemplate restTemplate = new RestTemplate();
private InvocationRequest request;
private Invoker invoker;
@PostConstruct
private void init() {
System.out.println("PostConstruct");
buildSonarCommand();
configureMavenWithSonar();
}
@Override
public void runAnalysis() throws MavenInvocationException {
// Assuming everything is set up (done in init)
invoker.execute(request);
}
@Override
public IssuesResponse getIssuesFromFileName(String fileName) {
String URL = GET_ISSUES_URL + fileName;
return restTemplate.getForObject(URL, IssuesResponse.class);
}
private void configureMavenWithSonar() {
request = new DefaultInvocationRequest();
request.setPomFile(new File(POM_PATH));
request.setGoals(Collections.singletonList(EXECUTE_SONAR));
invoker = new DefaultInvoker();
// Set maven home in case env variables are not set
// (and using own installation)
invoker.setMavenHome(new File("apache-maven-3.5.2"));
}
private void buildSonarCommand() {
StringBuilder builder = new StringBuilder();
builder.append("sonar:sonar ");
builder.append(String.format("-Dsonar.host.url=%s ", SONAR_URL));
builder.append(String.format("-Dsonar.projectKey=%s ", PROJECT_KEY));
builder.append(String.format("-Dsonar.sources=%s ", SRC_FOLDER));
EXECUTE_SONAR = builder.toString();
}
}
此代码有两个问题。第一个是,这是从很久以前删除的源文件夹的文件名中检索问题,我不明白为什么,因为如果我在localhost / 9000上输入sonarqube本地Web api,则代码不存在
第二个也是最重要的一点,我正在尝试从文件名中获取问题,但sonarqube却给了我所有项目(甚至是我有多个项目的项目)的问题,包括我上面说的第一个问题的已删除代码
我正在获取此URL的问题
http://localhost:9000/api/issues/search?q=" + fileName;
我正在使用SonarQube版本:6.7.1
这是我第一次使用声纳法,所以也许我想念一些东西
答案 0 :(得分:1)
您在哪里看到q
是有效参数?我不在the list中查看,这可能就是为什么您获得随机结果的原因。
您需要使用componentKeys
来代替,尽管右侧将不仅仅是文件名;而是类似projectKey:path/to/file
,因此您需要确定其细节。
关于您要恢复已删除文件的问题,将在30天后(数据库默认值)从数据库中清除已关闭的问题。由于您的查询当前正在拉出一组不受状态限制的随机问题,因此可以解释这些“幽灵”问题的发生。