使用 Spring Hibernate 获取对象或特定列

发布于 2024-10-20 15:32:35 字数 270 浏览 2 评论 0原文

我有一个简单的问题:获取整个列(对象)比获取单个列(对象)更昂贵吗?

哪一种是更好的做法?

getHibernateTemplate().find("select uid, username,email from User ");


or using

getHibernateTemplate().find("from User ");

并从检索到的对象中获取各个列?在 SQL 中,第一个是更好的实践,那么 Hibernate 怎么样?

I have a simple question: is it more expensive to get the whole columns(the object) than getting the individuals ones?

Which one is a better practice?

getHibernateTemplate().find("select uid, username,email from User ");


or using

getHibernateTemplate().find("from User ");

and getting the individual columns from the retrieved object? In SQL the first one is a better practice how about Hibernate?

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

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

发布评论

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

评论(2

酒与心事 2024-10-27 15:32:35

这实际上取决于您的对象映射是什么。如果拉动行时不需要联接,那么我认为拉动整行与单个列之间的差异可以忽略不计。

另一方面,如果您的对象与其他对象有多个其他关系,那么执行投影而不是整个列检索可能会产生很大的性能差异。

It really depends on what your object mappings are. If there are no joins required in pulling a row then I think the difference between pulling the entire row vs individual columns would be negligible.

On the other hand if your Object has several other relationships to other objects, then there could be a big performance difference in performing a Projection instead of an entire column retrieval.

深巷少女 2024-10-27 15:32:35

在 Hibernate 中也是如此,第一种做法可以更好地减少负载。

In Hibernate too, 1st practice is better to reduce the load.

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