使用system.property获取项目绝对路径

由于在rpc服务中使用了System.getProperty("user.dir")方式去获取当前srv项目的绝对路径

使用过程如下:

String userDir = System.getProperty("user.dir");
String home = userDir.substring(0, userDir.lastIndexOf('/'));
System.setProperty("home", home);

项目文件目录结构如下

使用system.property获取项目绝对路径_第1张图片
Paste_Image.png
String locationPath = StringUtils.join(       
 new String[]{                
System.getProperty("home"),                
"config",                
"init",                
"location.txt"        },     
   File.separator);

你可能感兴趣的:(使用system.property获取项目绝对路径)