Spring Boot 读取静态资源文件
Posted killer-leon
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot 读取静态资源文件相关的知识,希望对你有一定的参考价值。
一、需求场景
有时候我们需要在项目中使用一些静态资源文件,比如城市信息文件 ueditorConfig.json
,在项目启动后读取其中的数据并初始化写进数据库中。
二、实现
静态资源文件 ueditorConfig.json
放在 src/main/resources
目录下
使用 Spring 的 ClassPathResource 来实现 :
Resource resource = new ClassPathResource("ueditorConfig.json");
File file = resource.getFile();
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file)));
ClassPathResource
类的注释如下:
Resource implementation for class path resources. Uses either a given ClassLoader or a given Class for loading resources.
Supports resolution as java.io.File if the class path resource resides in the file system, but not for resources in a JAR. Always supports resolution as URL.
翻译过来就是:
类路径资源的资源实现。使用给定的ClassLoader或给定的类来加载资源。
如果类路径资源驻留在文件系统中,则支持解析为 java.io.File,如果是JAR中的资源则不支持。始终支持解析为URL。
三、Jar 中资源文件
上面也提到了,如果静态资源文件在文件系统里,则支持解析为 java.io.File
,程序是能正常工作的。
到项目打包成 Jar
包放到服务器上运行就报找不到资源的错误了!
解决法案是:不获取 java.io.File
对象,而是直接获取输入流
:
Resource resource = new ClassPathResource("ueditorConfig.json");
BufferedReader br = new BufferedReader(new InputStreamReader(resource.getInputStream()));
说明:构造得到 resource
对象之后直接获取其输入流 resource.getInputStream()
。
以上是关于Spring Boot 读取静态资源文件的主要内容,如果未能解决你的问题,请参考以下文章
Spring Boot参考教程Spring Boot Jar方式读取资源文件