I am trying to an application from JSF 1.2 to JSF 2.0. Basically, I am following those guides:
- RichFaces 3.3.3 and JSF 2.0, as my application uses RichFaces 3.3
- Facelets 1.x to Facelets 2.0, since I am using Facelets as presentation technology.
After getting a great deal of the expected errors, I got this unexpected error message (names changed to protect the guilty):
weblogic.servlet.jsp.CompilationException: Failed to compile JSP /mypage.jsp
mypage.jsp:10:36: The deferred EL expression is not allowed since deferredSyntaxAllowedAsLiteral is false.
<ui:param name="pageTitle" value="#{myBundle.myPageTitle}" />
^---------------------^
Does this error mean I have fallen back to JSP presentation technology?