JavaFX 从数据库重新获取可观察列表
我需要显示经常从外部源更新的数据库表中的定制节点列表。
当数据库发生更改时,屏幕上的列表需要相应更新。
为此,我实现了一个带有 onChanged 方法的 ObservableList,该方法应该检查更改并重建自定义列表。
在我的例子中,当数据库中添加新数据时,onChanged 方法永远不会触发,只有当对已定义的 ObservableList 进行动态更改时才会触发。
当数据库中存在新数据时,如何让 ObservableList 知道?
提前致谢!
I need to show a custom made list of nodes from a database table that is frequently updated from external sources.
When changes are made to the database, the list needs to be updated on the screen accordingly.
For this I have implemented an ObservableList with an onChanged method that should check for changes and rebuild the custom list.
I my case the onChanged method will never fire when new data is added in the database, only when changes are made on the fly to the already defined ObservableList.
How can i let the ObservableList know when new data exists in the database ?
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
鉴于您对 jkaufmann 的回答,您似乎需要改变您的逻辑。
每次您需要计算与新数据的差异并使用新的/删除的数据更新 ObservableList 时,无需重建 ObservableList。
Given your answer to jkaufmann it seems you need to change your logic.
Instead of rebuilding ObservableList each time you need to calculate the difference with new data and update ObservableList with new/removed data.