Java、MyFaces 1.1、Tobago 以及如何创建可重用的 Web 组件

发布于 2024-08-10 04:27:45 字数 288 浏览 4 评论 0原文

假设您想要创建某种形式的网络对话框来允许您执行某些操作。例如通过过滤一些选择标准来查询一些信息。该对话框可能包含几个文本框、标签、组合框和按钮。

现在您注意到这个对话框需要在不同的地方使用。然而,绑定到组合的业务对象可能不同,描述其他元素的标签也可能不同。但其余部分几乎相同。

如果底层组件框架是tobago并且使用myfaces 1.1,那么创建可重用Web组件的有效方法是什么?

如果有一些可用的教程或者你们有一些关键字供我谷歌搜索,那就太棒了。由于我是 Java 新手,我可能还没有找到正确的流行语。 ;-)

Assume you want to create some form of web-dialog that allows you to do something. For instance querying for some information by filtering some selection criterias. This dialog might consist of a couple of textboxes, labels, comboboxes and buttons.

Now you notice that exactly THIS dialog needs to be used in different places. However, the business objects that are bound to the combos might be different as well as maybe the lables that describe the other elements. But the rest is pretty much the same.

What is an effective way to create reusable web components if the underlying component framework is tobago and myfaces 1.1 is used?

If there is some tutorial available or you guys have some keywords for me to google that'd be awesome. Since I am new to Java I might not have looked for the correct buzzwords yet. ;-)

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

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

发布评论

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

评论(1

醉殇 2024-08-17 04:27:45

MyFaces 是 JSF 的一个实现。您想要做的是创建一个 JSF 自定义组件。可以创建包含任意数量组件的 jar 文件。

本教程应该让您了解所涉及的步骤。阅读 JSF 1.1 规范 并编写您自己的 清单。由于您正在针对旧版本的 JSF 进行编写,因此请注意对较新的 1.2/2.0 API 的引用(忽略对 Facelets 的任何引用)。

MyFaces is an implementation of JSF. What you want to do is create a JSF custom component. It is possible to create a jar file containing any number of components.

This tutorial should give you an idea of the steps involved. Read the JSF 1.1 spec and write your own checklist. Since you are writing against an older version of JSF, watch for references to the newer 1.2/2.0 APIs (ignore any references to Facelets).

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