el-spec
el-spec copied to clipboard
Expression Language 3.0 specification, JSR341
Currently the el api and impl are set to source/target 1.7 However, there are no functional requirement or features of the 1.7 JRE used. The only current barrier is with...
The javadoc for ExpressionFactory#getInitFunctionMap says: ``` /** * Retrieve a function map containing a pre-configured function * mapping. It must include the following functions. * * linq:range * linq:repeat *...
Change the spec like this: * 1.23.1, If X is null and Y is not a primitive type, return null. * 1.23.2, If A is null: return null Justification: JSF...
When invoking getMethodInfo() on a method expression, I always get null. This seems to be caused by AstValue.getMethodInfo(): ``` public MethodInfo getMethodInfo(EvaluationContext ctx, Class[] paramTypes) throws ELException { Target t...
When I use static field or method within Facelet, it's value is evaluated to null. Example: # {Integer.MAX_VALUE} # {Integer.toHexString(16)} Or this shows in the rendered page that result of...
Hi, EL 3.0 javadoc javax.el.BeanELResolver.setValue describes: > ... > If the property exists but does not have a setter, then a PropertyNotFoundException is thrown. > ... > PropertyNotWritableException - if...
According to the API documentation all the methods except for "convertToType" are and say exactly what the ELRosolver would do. But the Imp for any of these methods(listed below) do...