如何通过 JSF 2.0 (Glassfish V3) 获得 Tomahawk 功能

发布于 2024-08-28 03:46:58 字数 581 浏览 5 评论 0 原文

我已经开始将用 JSF 1.1 和 MyFaces Tomahawk 1.1 编写的现有应用程序升级到 JSF 2.0 以获得 Facelets 等。

我现在遇到了一个问题,显然 Tomahawk 与 JSF 2.0 不兼容,因为它需要独立版本的Facelets 而不是 JSF 2.0 内置的,但出现以下错误:(

org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler

它现在似乎放置在 javax.faces.view.facelets 中)。

我环顾四周,似乎没有 JSF 2.0 Facelet 兼容版本的 Tomahawk。我只相信我需要 t:updateActionListener (在 t:dataTable 内)和 t:panelGroup 的 rowSpan 工具。所有这些功能都可以直接在 JSF 2.0 中使用,还是我必须找到一个新的库来提供此功能?

有什么建议吗?

I've started to upgrade an existing application written with JSF 1.1 and MyFaces Tomahawk 1.1 to JSF 2.0 to get facelets etc.

I've now run into the snag that apparently Tomahawk is not JSF 2.0 compatible as it expects the stand-alone version of Facelets instead of the built-in to JSF 2.0 with the following error:

org.apache.catalina.LifecycleException: com.sun.faces.config.ConfigurationException: CONFIGURATION FAILED! com.sun.facelets.tag.jsf.ComponentHandler

(it appears to be placed in javax.faces.view.facelets now).

I have looked around and there doesn't seem to be a JSF 2.0 facelet compatible version of Tomahawk. I only believe I need t:updateActionListener (inside t:dataTable) and the rowSpan facility of t:panelGroup. Is all this functionality available in JSF 2.0 directly, or must I locate a new library giving this?

Any suggestions?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

半衬遮猫 2024-09-04 03:46:58

JSF 1.2 t:updateActionListener ="nofollow noreferrer">f:setPropertyActionListener

不幸的是,对于行跨度(和列跨度),标准 JSF 实现中仍然没有任何功能。然而,从 JSF 1.2 开始,您可以在视图中轻松编写“普通”HTML(使用 f:verbatim 等不会有任何麻烦)。您可以利用 Facelets 的 ui:repeat 在集合上迭代“plain”。从 JSF 2.0 开始,您甚至可以创建 复合组件 (基于模板的组件)。这必须使您能够使用 HTML rowspans/colspans。

The t:updateActionListener is covered by the JSF 1.2 f:setPropertyActionListener.

For rowspans (and colspans) there's unfortunately still no functionality in the standard JSF implementation. However, since JSF 1.2 you're allowed to write down "plain vanilla" HTML in the view without any pains (no hassle with f:verbatim and so on). You can make use of the Facelets' ui:repeat to iterate "plain" over a collection. Since JSF 2.0 you can even create composite components (templatebased components). This must enable you to make use of the HTML rowspans/colspans.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文