使用模型作为 dao 的前端
假设我使用一个简单的前端来传递由使用 JDBC(无 ORM)的 DAO 传递的信息。换句话说,这个类没有任何属性可言。这会被视为一种有效的方法吗?它可能会导致什么问题以及如何设计一个类来避免这些问题?
Say I use a simple frontend for information passed on by a DAO that uses JDBC (without ORM). In other words, the class would have no attributes to speak of. Would this considered as a valid approach? What issues could it potentially cause and how could a class be designed to avoid them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
听起来您指的是数据传输对象模式。只要该模式满足您的需求,它就是一种有效的方法。我不知道有任何这样的陷阱。
It sounds like you are referring to the data transfer object pattern. So long as the pattern fits your needs, it is a valid approach. I'm not aware of any pitfalls as such.