2009年12月: EL 从 JSP 规范中提取出来,成为独立于 JSP 的独立规范,第一个版本是 EL 2.2(JSR-245) ,类似于 JSP 2.2。主要的新特性是调用参数化方法,而不是仅仅在 #{}语法中调用 Javabean getters/setter,例如 #{bean.method(argument)}。此外,Faclets 成为 JavaEE6标准的一部分。
Jun 2013: EL 3.0 was introduced which comes with a standalone EL processor, allowing usage in a plain Java SE application. Other main new features are the new string concatenation operator +=, new operations for collection objects, including streams and Lambda expressions -> (even on Java 6/7!) and importing constants into EL scope.