[richfaces-issues] [JBoss JIRA] (RF-12832) Tomcat 6 test Deployments should define the expressionFactory

Brian Leathem (JIRA) jira-events at lists.jboss.org
Fri Mar 8 18:42:41 EST 2013


Brian Leathem created RF-12832:
----------------------------------

             Summary: Tomcat 6 test Deployments should define the expressionFactory
                 Key: RF-12832
                 URL: https://issues.jboss.org/browse/RF-12832
             Project: RichFaces
          Issue Type: Feature Request
      Security Level: Public (Everyone can see)
          Components: tests - functional 
            Reporter: Brian Leathem


JBoss EL is added as a dependency for tomcat deployments, however the expressionFactory needs to be configured to use the bundled EL implementation.

Without the configuration below, tests that use advanced EL features will fail on Tomcat.

For Mojarra implementations, the web.xml of the Deployment should contain:
{code}
<context-param>     
    <param-name>com.sun.faces.expressionFactory</param-name>
    <param-value>org.jboss.el.ExpressionFactoryImpl</param-value>   
</context-param>
{code}

And MyFaces implementations, the web.xml of the Deployment should contain:
{code}
<context-param>     
    <param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name>
    <param-value>org.jboss.el.ExpressionFactoryImpl</param-value>   
</context-param>
{code}

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


More information about the richfaces-issues mailing list