Environment.getProperty() method cannot process list items
Issue Details
Author
first: second: i,like,fish
the yaml config above can be processed when following code is executed
List<String> values = environment.getProperty("key", (List<String>) List.class)
however, following yaml config cannot be processed by the code snippet above
first: second: - i - like - fish
Issue Details
Environment.getProperty() method cannot process list items
Author
first: second: i,like,fish
the yaml config above can be processed when following code is executed
List<String> values = environment.getProperty("key", (List<String>) List.class)
however, following yaml config cannot be processed by the code snippet above
first: second: - i - like - fish