This error is generated in logs:
[FlexibleStringExpander.java:725:ERROR] Error evaluating expression
${parameters.quantityFromMap.10}: javax.el.ELException: Error parsing
'${parameters.quantityFromMap.10}': syntax error at position 28,
encountered '.10', expected '}
On 01/10/2014 02:30 PM, Christian Carlow wrote:
> Does anyone know how to access simple-method maps with integer keys?
>
> So if I have parameters = quantityFromMap={3=, 2=3, 10=, 1=1, 7=, 6=,
> 5=, 4=, 9=, 8=}
>
> I'm not able to access the one of the mapped values using
> ${parameters.quantityFromMap.1}.
>
> I think the problem has to do with the integer key. I've faced this
> problem in the past and ended up including the underscore before the
> number indexes just so they would be considered string keys.