什么是在Spring中将属性文件值转换为字符串集的有效方法

时间:2016-10-23 14:31:21

标签: java spring spring-boot java-8 properties-file

我尝试过使用

@Value("#{'${white.listed.hotel.ids}'.split(',')}")
private Set<String> fareAlertwhiteListedHotelIds;

但是当 white.listed.hotel.ids 为空时,还设置了一个带空白值的大小。

  

white.listed.hotel.ids =

有人可以帮我查看一个版本,其中 whiteListedHotelIds 可以包含属性文件中指定的值或者没有空白案例的项目。

3 个答案:

答案 0 :(得分:5)

您可以调用自定义方法(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;
    }
}

在此方法中,您可以根据需要自由处理属性(例如,空时的特定逻辑)。

答案 1 :(得分:1)

您也可以使用spring表达式语言进行验证,如果提供的字符串为空,则返回空数组或将输入字符串拆分为array。在jdk-11中,您可以直接使用isBlank

@Value("#{'${white.listed.hotel.ids}'.trim().isEmpty() ? new String[] {} : '${white.listed.hotel.ids}'.split(',')}")
private Set<String> fareAlertwhiteListedHotelIds;

答案 2 :(得分:0)

通过构造函数注入@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复杂化。