软件编程
位置:首页>> 软件编程>> java编程>> Spring Boot 读取静态资源文件的方法

Spring Boot 读取静态资源文件的方法

作者:kinginblue  发布时间:2023-08-25 02:53:07 

标签: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

来源:http://blog.csdn.net/kinginblue/article/details/71699627

0
投稿

猜你喜欢

手机版 软件编程 asp之家 www.aspxhome.com