What I want to be able to do is:
YAML:
features:
feature1: true
feature2: false
feature3: true
Code:
@Value("${features}")
private Map<String,Boolean> features;
I can't figure out what Spring scripting syntax to use to do this (if it's possible at all)