在Spring Boot中从类路径加载文件的示例
作者:程序汪布丁 时间:2023-11-11 21:53:44
资源加载器
使用Java,您可以使用当前线程的classLoader并尝试加载文件,但是Spring Framework为您提供了更为优雅的解决方案,例如ResourceLoader。
您只需要自动连接ResourceLoader,然后调用getResource(„somePath“)方法即可。
在Spring Boot(WAR)中从资源目录/类路径加载文件的示例
在以下示例中,我们从类路径中加载名为GeoLite2-Country.mmdb的文件作为资源,然后将其作为File对象检索。
@Service("geolocationservice")
public class GeoLocationServiceImpl implements GeoLocationService {
private static final Logger LOGGER = LoggerFactory.getLogger(GeoLocationServiceImpl.class);
private static DatabaseReader reader = null;
private ResourceLoader resourceLoader;
@Autowired
public GeoLocationServiceImpl(ResourceLoader resourceLoader) {
this.resourceLoader = resourceLoader;
} @PostConstruct
public void init() {
try {
LOGGER.info("GeoLocationServiceImpl: Trying to load GeoLite2-Country database...");
Resource resource = resourceLoader.getResource("classpath:GeoLite2-Country.mmdb");
File dbAsFile = resource.getFile(); // Initialize the reader
reader = new DatabaseReader
.Builder(dbAsFile)
.fileMode(Reader.FileMode.MEMORY)
.build();
LOGGER.info("GeoLocationServiceImpl: Database was loaded successfully.");
} catch (IOException | NullPointerException e) {
LOGGER.error("Database reader cound not be initialized. ", e);
}
}
@PreDestroy
public void preDestroy() {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
LOGGER.error("Failed to close the reader.");
}
}
}
}
在Spring Boot(JAR)中从资源目录/类路径加载文件的示例
如果您想从Spring Boot JAR中的 classpath加载文件,则必须使用该resource.getInputStream()方法将其作为InputStream检索。如果尝试使用resource.getFile()该方法,则会收到错误消息,因为Spring尝试访问文件系统路径,但无法访问JAR中的路径。
@Service("geolocationservice")
public class GeoLocationServiceImpl implements GeoLocationService {
private static final Logger LOGGER = LoggerFactory.getLogger(GeoLocationServiceImpl.class);
private static DatabaseReader reader = null;
private ResourceLoader resourceLoader;
@Inject
public GeoLocationServiceImpl(ResourceLoader resourceLoader) {
this.resourceLoader = resourceLoader;
} @PostConstruct
public void init() {
try {
LOGGER.info("GeoLocationServiceImpl: Trying to load GeoLite2-Country database...");
Resource resource = resourceLoader.getResource("classpath:GeoLite2-Country.mmdb");
InputStream dbAsStream = resource.getInputStream(); // <-- this is the difference
// Initialize the reader
reader = new DatabaseReader
.Builder(dbAsStream)
.fileMode(Reader.FileMode.MEMORY)
.build();
LOGGER.info("GeoLocationServiceImpl: Database was loaded successfully.");
} catch (IOException | NullPointerException e) {
LOGGER.error("Database reader cound not be initialized. ", e);
}
}
@PreDestroy
public void preDestroy() {
if (reader != null) {
try {
reader.close();
} catch (IOException e) {
LOGGER.error("Failed to close the reader.");
}
}
}
}
来源:https://developer.51cto.com/art/202009/627661.htm
标签:spring,boot,加载,文件,类路径
0
投稿
猜你喜欢
使用mutex实现应用程序单实例运行代码分享
2023-09-18 22:45:11
详解C# 匿名对象(匿名类型)、var、动态类型 dynamic
2022-03-26 18:43:02
浅谈java中OO的概念和设计原则(必看)
2023-11-24 13:09:56
详解Java泛型及其应用
2023-09-21 22:38:32
C#事件(event)使用方法详解
2023-12-24 14:35:05
Kotlin全局捕捉协程异常方法详解
2022-10-09 23:27:03
Android--SQLite(增,删,改,查)操作实例代码
2022-09-04 18:29:48
Java Map.values()方法之如何获取Map集合中的所有键值对象
2022-11-16 15:40:30
深入学习java枚举的应用
2022-10-27 19:56:34
SpringCloud客户端报错:- was unable to send heartbeat!的解决
2021-08-13 14:08:11
C# winform点击生成二维码实例代码
2023-12-10 08:17:20
新版Android Studio3.6找不到R.java怎么处理
2023-11-28 14:04:03
Android RxJava与Retrofit结合使用详解
2021-10-19 20:10:53
Android实现调用摄像头拍照并存储照片
2023-05-02 10:48:20
Java实现在线五子棋对战游戏(人机对战)
2023-01-10 19:07:29
C#中File类的文件操作方法详解
2022-10-04 01:25:28
java实现压缩字符串和java字符串过滤
2023-01-06 10:35:19
本地编译打包项目部署到服务器并且启动方式
2022-02-18 06:27:45
java多线程CountDownLatch与线程池ThreadPoolExecutor/ExecutorService案例
2021-06-21 12:29:50
详解Android WebView加载html片段
2023-04-23 11:40:12