Reading a List from properties file and load with spring annotation @Value I want to have a list of values in a .properties file, ie: my.list.of.strings=ABC,CDE,EFG And to load it in my class directly, ie: @Value("${my.list.of.strings}") private List<String> myList; As I... May 17, 2022 0 Comments