yaml is very convenient because you are getting a nice deserialization from yaml to java but in my case I need to be able to obtain the property value at runtime. Is there a way to accomplish this as if you were using .properties file instead, for example, just by having the property key value?
appName: myAppName
Here I'd like to obtain myAppName value at runtime using the snakeyaml library.