SpringBoot读取resources目录下的文件
传统的使用new File()打成jar包会找不到文件,可以使用spring提供的ClassPathResource()
类访问resources下的文件
ClassPathResource classPathResource = new ClassPathResource("status/xxx.xml");
InputStream inputStream = classPathResource.getInputStream();