使用system.property获取项目绝对路径
2016-12-13 本文已影响65人
洋__
由于在rpc服务中使用了System.getProperty("user.dir")方式去获取当前srv项目的绝对路径
使用过程如下:
String userDir = System.getProperty("user.dir");
String home = userDir.substring(0, userDir.lastIndexOf('/'));
System.setProperty("home", home);
项目文件目录结构如下

String locationPath = StringUtils.join(
new String[]{
System.getProperty("home"),
"config",
"init",
"location.txt" },
File.separator);