作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须从类路径之外加载文件。位置取决于环境属性:
/location/file
) 加载文件最好的方法是什么?
最佳答案
一个可能的解决方案是使用配置属性和Resource
。例如,像这样定义您的属性:
@ConfigurationProperties(prefix = "app")
public class SomeProperties {
private Resource file;
// Getters + Setters
}
然后通过在任何类(例如主类)上使用 @EnableConfigurationProperties
注释来启用配置属性:
@SpringBootApplication
@EnableConfigurationProperties(SomeProperties.class)
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
要配置文件位置,您可以在开发中使用以下内容:
app.file=classpath:test.txt
在生产环境中您可以使用:
app.file=file:/usr/local/test.txt
现在您可以在任何其他服务中 Autowiring SomeProperties
类。 Resource
类有一个 getFile()
方法,允许您检索文件,但此外它还包含其他几个有用的方法。
关于java - Spring boot - 从外部类路径加载文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51290915/
我是一名优秀的程序员,十分优秀!