Is there a way to put the EL engine in to a "strict" mode?
I would like to get an error message when I reference something in EL that does not exist.
For example, I would like this to produce an error:
... value="#{cc.attr.attrname}" ...
It's misspelled. It should have been:
... value="#{cc.attrs.attrname}" ...
The default behavior appears to be:
ignore the fact that cc does not have an attr member, and assign an empty string to value.
If it matters, I'm using Mojarra 2.2.9 under Glass Fish 3.1.2.2 with
<class-loader delegate="false" />
<property name="useBundledJsf" value="true"/>