gpt4 book ai didi

java - Spring外部配置

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

我是 spring 新手,在我的项目中我使用属性文件来读取 IP 配置,如下所示。

@Configuration
@PropertySource("classpath:ipaddress.properties")

在我的属性文件中

ip=http://192.168.1.199:8888

属性文件存在于我的项目(com.test....)中,但我想从我的项目中删除并从jboss配置或其他东西的其他地方读取IP地址。如果有人能在这方面指导我,我将不胜感激。提前致谢。

最佳答案

你可以尝试使用类似的东西:

@PropertySources({
@PropertySource("classpath:application.properties"),
@PropertySource(value = "file:config/application.properties", ignoreResourceNotFound = true)

})

file:config/application.properties 应该是外部 application.properties 文件的位置。

关于java - Spring外部配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38240017/

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