我收到声纳上的警告:
隐藏实用工具类构造函数:
实用程序类不应具有 public 或缺省构造函数
我的班级:
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;
}
}
我想解决方案,以消除这个 警告对 声纳 Qube。