我已经创建了一个属性文件,并通过我的代码访问这个属性文件:
java.util.Properties clientProperties = new java.util.Properties();
try{
System.out.println("reading properties file");
clientProperties.load(new FileInputStream("Get_Remove.properties"));
String CONF_FILE_EHCACHE_XML = clientProperties.get("CONF_FILE_EHCACHE_XML").toString();
System.out.println("ehcache_Address : " + CONF_FILE_EHCACHE_XML);
}catch(IOException ioe){
System.out.println("Property file read exception: ");
ioe.printStackTrace();
}
现在我已经将包含上述代码的项目部署为axis2中的AAR文件。但是当我启动axis2服务器并点击上述服务然后读取属性文件时,它会在axis2控制台抛出异常:
Property file read exception:
java.io.FileNotFoundException: Get_Remove.properties (The system cannot f
ind the path specified)
那么我如何从部署在axis2中的服务访问我的.property文件作为.aar文件。期待您的回答。提前致谢