使用 tomcat 6 和 jsp2.1 运行 jboss-el
我需要在 EL 表达式中发送参数。
所以我把jboss-el jar。
另外,我
<context-param>
<param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name>
<param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
</context-param>
在项目的 web.xml 中添加了标签:。
但在我看来,它仍然使用旧的表达式工厂!
我该如何处理?
I need to send parameters in my EL Expression.
So i put jboss-el jar.
as well, I added the tag:
<context-param>
<param-name>org.apache.myfaces.EXPRESSION_FACTORY</param-name>
<param-value>org.jboss.el.ExpressionFactoryImpl</param-value>
</context-param>
in my web.xml of the project.
But it seems to me that it stil uses the old expression factory!
how can i handle it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
El 表达式不适用于 tomcat 6 中的 JSP2.1。
我不得不切换到facelet
El expression doesn't work with JSP2.1 in tomcat 6.
I had to switch to facelet
另一种方法是使用 Tomcat 7.x,因为它实现了 JSP 2.2,
另请参阅要使用哪个版本
Another approach is to use Tomcat 7.x as it implements JSP 2.2
see also Which version to use