gpt4 book ai didi

java - 如何在 Spring Boot 中加载和遍历属性文件

转载 作者:行者123 更新时间:2023-11-29 06:26:42 25 4
gpt4 key购买 nike

我有一个 properties 文件,其中的值以逗号分隔。我能够将值作为 Object 获取,如下所示。谁能告诉我如何分离值并在 String 中获取它。

.properties

key-1 = value1,value11
key-2 = value2,value22
key-3 = value3,value33
key-4 = value4,value44

代码

@PropertySource( value = "classpath:test1.properties", name = "test1" )

AbstractEnvironment ae = (AbstractEnvironment)env;
org.springframework.core.env.PropertySource test1Source =
ae.getPropertySources().get("test1");
Properties propsTest1 = (Properties)test1Source.getSource();

for(Object key : propsTest1.keySet()){
System.out.println("Properties file======> propsTest1.get(key));
}

最佳答案

您可以使用带有@PropertySource@Value 注释来获取属性的值。此外,您可以使用 Spring Expression 将其拆分为列表,例如:

@PropertySource( value = "classpath:test1.properties", name = "test1" )
public class PropertyClass {

@Value("#{'${key-1}'.split(',')}")
private List<String> key1Values;
}

这将为您提供针对 key-1 配置的所有值的列表。

关于java - 如何在 Spring Boot 中加载和遍历属性文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55179462/

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