首先明白,ClassPath : 指的是:WEB-INF\classes这个目录下,通常把文件放在src文件夹下,或者新建文件并且添加到build path即可。IDE在同步文件到tomcat时会自动将文件放在classes下。
获取properties的代码:
public Properties loadProperties() { Properties properties = new Properties(); InputStream stream = this.getClass().getClassLoader() .getResourceAsStream("/xxx.properties"); try { properties.load(stream); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } return properties; }
请注意:路径
/handlerFactory.properties
有/表示从classpath根目录下查找,无/表示从当前包下查找。
这次被坑的最重要一点:
Properties文件名首字母不能大写,
Properties文件名首字母不能大写,
Properties文件名首字母不能大写,
大写了你一辈子找不到文件。!
重要的事情说三遍!
版权声明:本文为博主原创文章,未经博主允许不得转载。
时间: 2024-11-06 03:40:40