JSF 2.0 复合组件可以发出自定义事件吗?

发布于 2024-11-27 00:57:38 字数 103 浏览 0 评论 0原文

我有一个执行数据库操作的 JSF 2.0 复合组件。

执行此数据库操作后,此复合组件是否可以立即调用侦听器方法? (此侦听器方法将位于使用复合组件的页面的支持 bean 中)

I have a JSF 2.0 Composite Component which performs a database operation.

Can this Composite Component call a listener method as soon as this database operation has been performed?
(This listener method will be in the backing bean of the page which uses the Composite Component)

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

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

发布评论

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

评论(1

安人多梦 2024-12-04 00:57:38

您可以定义自定义事件并从组件中发布该事件。该事件应该是 ComponentSystemEvent 的子类,并且需要使用 UIComponent.publishEvent() 来发布。

您可以注册自定义事件处理程序,在本例中是 ComponentSystemEventListener 的实现,以声明方式使用 f:Event 或以编程方式使用 Application.subscibeToEvent() 或 UIComponent.subscribeToEvent()

You could define a custom event and publish this event form your component. The event should subclass ComponentSystemEvent and needs to be published using UIComponent.publishEvent().

You could register custom event handlers, in this case an implementation of ComponentSystemEventListener, declaratively using f:Event or programmatically using Application.subscibeToEvent() or UIComponent.subscribeToEvent()

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