Spring Boot 读取静态资源文件的方法
一、需求场景
有时候我们需要在项目中使用一些静态资源文件,比如城市信息文件 countries.xml,在项目启动后读取其中的数据并初始化写进数据库中。
二、实现
静态资源文件 countries.xml 放在 src/main/resources 目录下
使用 spring 的 classpathresource 来实现 :
resource resource = new classpathresource("countries.xml"); 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("countries.xml"); bufferedreader br = new bufferedreader(new inputstreamreader(resource.getinputstream()));
说明:构造得到 resource 对象之后直接获取其输入流 resource.getinputstream()。
四、附录
- spring boot access static resources missing scr/main/resources
- classpath resource not found when running as jar
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: Java透明窗体的设置方法
推荐阅读
-
Spring Boot 读取静态资源文件的方法
-
Spring Batch读取txt文件并写入数据库的方法教程
-
Spring boot 默认静态资源路径与手动配置访问路径的方法
-
Spring Batch读取txt文件并写入数据库的方法教程
-
详解Spring-boot中读取config配置文件的两种方式
-
读取spring配置文件的方法(spring读取资源文件)
-
spring boot加载第三方jar包的配置文件的方法
-
spring boot 自动更新静态文件和后台代码的实例
-
Spring boot按日切分spring boot的nohup.out日志文件的方法
-
Spring Boot 中的静态资源放置位置