JSF 2.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以定义自定义事件并从组件中发布该事件。该事件应该是 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()