gpt4 book ai didi

java - 如何在Spring boot中加载没有任何文件扩展名的配置文件

转载 作者:行者123 更新时间:2023-12-02 09:20:49 24 4
gpt4 key购买 nike

我正在尝试找出在 SpringBoot 应用程序中加载配置文件的选项,该应用程序没有任何文件扩展名。

例如我有 2 个配置文件 application.properties 和我提到的使用外部位置的 secret 。 Spring 忽略 secrets 配置文件;但是,当我将 secrets 文件扩展名更改为properties/yml 时,它就可以工作了。

-Dspring.profiles.active=local \
-Dspring.config.location=file:///<config location>/git/graphql-account/secrets,file:///<config location>/git/graphql-account/application-local.properties

我探索过Spring guide但找不到解决方案。有什么建议如何解决这个问题吗?

注意:我正在使用 openshift cloud,我需要加载它的 secret ,这些 secret 可在 /opt/epaas/vault/secrets/secrets 中找到。我不允许更改文件扩展名。

最佳答案

一种可能的解决方案是使用@PropertySource注释:

@SpringBootApplication
@PropertySource("file:/etc/secrets")
public class Demo {

public static void main(...) {...}
}

/etc/secrets 是常规属性文件(键/值对,但没有扩展名)。

当然,如果你想配置/etc/secrets的位置,可以在@PropertySource注解属性定义中使用SPEL:

@PropertySource(value="file:/${secrets.file.localtion}"

关于java - 如何在Spring boot中加载没有任何文件扩展名的配置文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58699879/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com