标签:src properties
因为是WEB环境,所以在查找文件时不能像main方法一样查找,比如写src/test.properties,在运行时时找不到的
文件路径需要改写成
xxx.class.getClassLoader() .getResource("").getPath().substring(1)
+ "test.properties"
标签:src properties
原文地址:http://elisazhang.blog.51cto.com/6332349/1749810