Community
Participate
Working Groups
The following validates correctly: #{someMap["abc.def"]} #{someMap.get("abc.def")} #{someMap['abc']} The following does not with "Syntax error in EL": #{someMap['abc.def']} #{someMap.get('abc.def')} #{someMap.get("abc.def")} The issue appears to be with the single quotes, and sometimes the "." in the property name.