JSF2.0 库中未找到 f:ajax 标记
你好,
想要实现一个具有 JSF2.0 ajax 功能的解决方案。到目前为止,我还没有使用它的任何实现,例如 richfaces 或icefaces。
我正在使用 jsf-impl-2.0.2 和 jsf-api-2.0.2.jar 并使用 apache-tomcat-6.0.16。
在 f:ajax 中仍然出现未知标签错误。
我的一些疑问是,
我不能仅使用这些 JSF 库来实现 ajax 还是必须强制使用它的任何实现,例如 richfaces 或icefaces。
如果我有 JSF 2.0 本身提供的一些 ajax 实用程序,那么使用 richfaces 和icefaces 的目的是什么,因为我的页面是 av
HI,
Want to implement a solution with JSF2.0 ajax functionality. As of now am not using any of its implementations like richfaces or icefaces.
I am using the jsf-impl-2.0.2 and jsf-api-2.0.2.jar and using apache-tomcat-6.0.16.
Still getting unknown tag error in f:ajax.
Some of my queries,
Can't I implement ajax by just using these JSF libraies or do I have to use mandatorily any of its implementation like richfaces or icefaces.
If i have some ajax utility that JSF 2.0 itself gives then what is the purpose of using richfaces and icefaces as my page is a v
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您的问题的原因是您正在使用 jsp 页面(并且在该 jsp 中您正在编写
.jsf 2.0 中的 jsp 页面不支持此功能。
要使用
您需要有 xhtml 页面。the reason for your problem is that you are using jsp page (and inside that jsp you are writing the
<f:ajax>
.This is not supported by the jsp pages in jsf 2.0.
To use
<f:ajax>
you need to have xhtml pages.JSF 2.0 具有内置的 ajax 支持。您不需要任何额外的库。
如果你的库没问题,你应该发布你的错误消息和一些带有 ajax 调用的源代码。那么我们可以帮助您(也许)。
Richfaces 和 Icefaces 是 JSF 之上的组件库。两者都有在线展示,可以查看所提供的组件。我会将 Primefaces 添加到此列表中:
Icefaces 展示
Richfaces 展示
Primefaces展示
JSF 2.0 has built-in ajax support. You don't need any additional libraries.
If your libs are ok, you should post your error message and some of your source code with ajax calls. Then we can help you (maybe).
Richfaces and Icefaces are component libraries on top of JSF. Both have online showcases to see which components the provide. I would add Primefaces to this list:
Icefaces showcase
Richfaces showcase
Primefaces showcase