After taking a look at SpEL specification and combined with @javaguy’s answer I came up with this:
@Value("${my.list.of.strings:}#{T(java.util.Collections).emptyList()}")
private List<String> myList;
After taking a look at SpEL specification and combined with @javaguy’s answer I came up with this:
@Value("${my.list.of.strings:}#{T(java.util.Collections).emptyList()}")
private List<String> myList;