Expression language
Appearance
![]() | It has been suggested that this article be merged with Unified Expression Language. (Discuss) Proposed since October 2009. |
Expres
- double and single quotes are equivalent
object.property
has the same meaning asobject['property']
EL also liberates the programmer from having to know the particularities of how the values are actually accessed: object.property
can mean (depending on what the object
is) either object.get("property")
or object.getProperty("property")
or object.getProperty()
etc.
See also
- OGNL- An open source expression language used by WebWork (and Struts2).
- MVEL- Another open source EL used in many Java-based projects.
External links