In trying to set a Map<String, Map<String, Object>> trying to use the expression language, I've got a weird quirk. This expression gives me a one element List of type Arrays$ArrayList. That is I get an array where the sole entry is "value1, value2, value3"
#{T(java.util.Arrays).asList('${propertyKey}'.replaceAll('
', ''))
I actually get a List<List<String>> when I change this to the following:-
#{T(java.util.Arrays).asList('${propertyKey}'.replaceAll(' ', '')).split(',')
Implication is that I have to go fetch the first element of the object to get the list I'm actually expecting.
((List<String>) listObject).get(0);
I note that in my Java class where the setter is the object being set is declared to be of type 'Object' (in the Map mentioned) and not type List in case this is the cause.