String rootPath=Contant.class.getResource("/").getPath();
Properties prop = new Properties();
FileInputStream fis = new FileInputStream(rootPath+"/spring/SystemInit.properties");
prop.load(fis);
fis.close();
INTERFACE_HOST = prop.getProperty("INTERFACE_HOST").trim();