1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
private static String getResourceBasePath() { File path = null; try { path = new File(ResourceUtils.getURL("classpath:").getPath()); } catch (FileNotFoundException e) { } if (path == null || !path.exists()) { path = new File(""); }
String pathStr = path.getAbsolutePath(); pathStr = pathStr.replace("/target/classes", "");
return pathStr; }
|