PathKit.getWebRootPath()方法如果项目部署到服务器上的也是可以获取项目根路径的把?
public static String getWebRootPath() { if (webRootPath == null) { webRootPath = detectWebRootPath(); } return webRootPath; } // 注意:命令行返回的是命令行所在路径的上层的上层路径 private static String detectWebRootPath() { try { String path = PathKit.class.getResource("/").toURI().getPath(); return new File(path).getParentFile().getParentFile().getCanonicalPath(); } catch (Exception e) { throw new RuntimeException(e); } }