I am using javax.faces-2.0.10.jar on websphere 8.5 and I am using jboss-el-2.0.0.GA.jar and in my web.xml I have the following configuration for el:
<context-param> <param-name>com.sun.faces.expressionFactory</param-name> <param-value>org.jboss.el.ExpressionFactoryImpl</param-value> </context-param>
in the logs, I see that jsf was successfully initialized, but I also see the following error:
JSF1027: [null] The ELResolvers for JSF were not registered with the JSP container.
classloader is installed on the last parent and I can open the jsp and xhtml pages without errors, but I keep getting the above error in the logs, any ideas why?
source share