使用从 DAO 获取的信息交换视图中的值
为了满足要求,我暂时使用了 hack 将数字 id 与表示视图中相应用户名的字符串进行交换。
为此,我直接从 TableModel 调用 DAO。显然,这不是很优雅,而且从设计的角度来看可能是不合适的。实现这一目标的正确方法是什么?
To respect requirements, I've temporarily used a hack to swap around a numerical id with a String representing a corresponding username in the view.
To do this I've called a DAO directly from a TableModel. Obviously, this isn't very elegant and is probably inappropriate from a design point of view. What would be the proper approach to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
TableModel 是从 EDT 查询的,因此永远不应该阻塞 - 因此调用 DAO 可能是一个坏主意。您可以:
1 可能是最容易实现的选项。
A TableModel is queried from the EDT and so should never block - so calling a DAO is probably a bad idea. You can either:
1 is probably the easiest option to implement.