如何在 Spring Boot 中将属性文件值读入字符串集
Posted
技术标签:
【中文标题】如何在 Spring Boot 中将属性文件值读入字符串集【英文标题】:How to read property file values into set of Strings in Spring boot 【发布时间】:2017-03-05 09:12:45 【问题描述】:我尝试过使用
@Value("#'$white.listed.hotel.ids'.split(',')")
private Set<String> fareAlertwhiteListedHotelIds;
但是当 white.listed.hotel.ids 为空时,也设置了一种尺寸和空白值。
white.listed.hotel.ids =
有人可以帮我提供一个版本,其中 whiteListedHotelIds 可以包含任何值(如果在属性文件中指定)或没有用于空白大小写的项目。
【问题讨论】:
您的意思是在 whiteListedHotelIds 为空的情况下指定默认值吗? ***.com/questions/11991194/… 的可能重复项 @Georgesvanhoutte van houtte:我只是希望集合为空,以防 whiteListedHotelIds 为空。 【参考方案1】:您可以调用自定义方法(as described in this other answer to build a map,其灵感来自@FedericoPeraltaSchaffner's answer):
@Value("#PropertySplitter.toSet('$white.listed.hotel.ids')")
private Set<String> fareAlertwhiteListedHotelIds;
...
@Component("PropertySplitter")
public class PropertySplitter
public Set<String> toSet(String property)
Set<String> set = new HashSet<String>();
//not sure if you should trim() or not, you decide.
if(!property.trim().isEmpty())
Collections.addAll(set, property.split(","));
return set;
在此方法中,您可以随意处理属性(例如为空时的特定逻辑)。
【讨论】:
或Collections.addAll(set, property.split(","));
跳过中间的List
步骤。
谢谢@Holger!我已将 Arrays.asList(...) 替换为您的建议!【参考方案2】:
您也可以使用spring表达式语言进行验证,如果提供的字符串为空,则返回空数组或将输入字符串拆分为数组。从 jdk-11 你可以直接使用isBlank
@Value("#'$white.listed.hotel.ids'.trim().isEmpty() ? new String[] : '$white.listed.hotel.ids'.split(',')")
private Set<String> fareAlertwhiteListedHotelIds;
【讨论】:
【参考方案3】:通过构造函数注入@Value
(正如你一直应该做的那样)并在那里进行你需要的所有后处理:
@Component
class Foo
private final List<String> bar;
public Foo(@Value("$foo.bar") List<String> bar)
this.bar = bar.stream()
.filter(s -> !"".equals(s))
.collect(Collectors.toList());
SPEL 没有必要让事情复杂化。
【讨论】:
以上是关于如何在 Spring Boot 中将属性文件值读入字符串集的主要内容,如果未能解决你的问题,请参考以下文章
如何在spring boot中将@Value属性从application.properties注入@InjectMocks?
如何根据 Spring Boot 中的活动配置文件设置注释属性值?