Is there a way to set an empty list as default value for a property in Spring, something like:
@Value("${my.list.of.strings :" + new ArrayList<>() + "}")
private List<String> myList;
Obviously not new ArrayList, but I need an empty list there instead.