//获取文件相对路径,path是自己定义的路径参数
InputStream inputStream =getClass().getClassLoader().getResourceAsStream(path);
prop.load(inputStream);
这个方法会自动加载target/classes路径下面的文件。请看我的demo
public static void main(String[] args) {
PropertiesUtil propertiesUtil = new PropertiesUtil();
propertiesUtil.init("config.properties");
}