SpringBoot容器应用读取resources目录下文件的方式
比如在resources/config/test.txt,如果用this.getClass().getResourceAsStream("config/test.txt")在本地可以读取,但是发布到容器里就读取不了了;
而是要改成:
ClassPathResource cpr = new ClassPathResource("config/test.txt");
byte[] data = FileCopyUtils.copyToByteArray(cpr.getInputStream());
posted on 2022-10-21 10:36 Silentdoer 阅读(103) 评论(0) 编辑 收藏 举报