我在声纳上收到此警告。我想要解决方案来删除 Sonar Qube 上的这个警告。
我的课是这样的:
public class FilePathHelper {
private static String resourcesPath;
public static String getFilePath(HttpServletRequest request) {
if(resourcesPath == null) {
String serverpath = request.getSession().getServletContext().getRealPath("");
resourcesPath = serverpath + "/WEB-INF/classes/";
}
return resourcesPath;
}
}
我想要适当的解决方案来消除声纳上的这个警告。