<context-param>
<param-name>javax.faces.INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL</param-name>
<param-value>true</param-value>
</context-param>
Does not work with the latest Mojarra 2.2.5 on both glassfish 4 and wildfly 8 Final
I have seen multiple bug reports on this, Manfried Riem says,
It was determined this is an EL issue and the EL implementation has been fixed to fix this
The fix versions says 2.2.5, and it is also stated in the release notes of 2.2.5, am I missing something?
There's a JVM parameter for the application server that helped me. See Work around for faulty INTERPRET_EMPTY_STRING_SUBMITTED_VALUES_AS_NULL in Mojarra JSF 2.1
The sample codes obj condition checking is wrong. At update model phase, the obj is passed at null. After correct to the code below, my custom ELResolver works.
We tested all Oracle EL 2.2.2, 3.0.0, 3.0.1-b0X[1-8] and with Apache Jasper EL 3.0 in Tomcat 7.0.xx or Tomcat 8.0.30 using or not custom ELResolver Wrapper with ELResolver fixed @ faces-config.xml level.
The result is the same. String MethodExpression null is interpreted as EMPTY String ""
Calling from EL the following methods with t=null;
Case 1
Case 2
Case 3
Case 4
Fixed with a custom resolver:
faces-config.xml:
EmptyNullStringResolver.java:
The actual fix is in EL, not in JSF. The Mojarra version mentioned in the issue report was just "concidentally" the latest Mojarra version at that moment. See also The empty String madness.
Basically, to solve this problem you need to upgrade the EL implementation (or simply the whole server as it's the one actually providing EL out the box). In case of Oracle/Sun EL, the fix is in version 3.0.1 b05 which has been available since 7 July 2014 (just pick the newest one). You can just drop the JAR in
/WEB-INF/lib
and if necessary add the below configuration toweb.xml
in case your server ships with a different EL implementation than Oracle/Sun EL which also exposes the same bug:Or you can install an alternative EL implementation, such as JUEL:
In case you're using MyFaces instead of Mojarra, use
<param-name>
oforg.apache.myfaces.EXPRESSION_FACTORY
.As to upgrading the server, the EL version with the fix is present in at least GlassFish 4.1 and WildFly 8.2.