lowkeyfish / sonar-intellij-plugin

Perform Sonar code analysis on Java projects, view code analysis reports, and prompt problem codes.
GNU General Public License v3.0
18 stars 11 forks source link

fix: 更新SonarApi 路径为相对路径,解决baseUrl包含二级目录时的空异常 #22

Open zhengxiaosong opened 1 year ago

zhengxiaosong commented 1 year ago

根据retrofit2定义,@GET("/api/execute")会作为绝对路径处理,如果baseUrl为 https://example.com/sonar/, 那么完整地址会变为 https://example.com/api/execute。 如果需要保持子路径作为BaseUrl,那么需要采用相对路径 @GET("api/execute"),这样retrofit2会处理为https://example.com/sonar/api/execute