Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Arrow up icon
GO TO TOP
Mastering Hibernate

You're reading from   Mastering Hibernate Learn how to correctly utilize the most popular Object-Relational Mapping tool for your Enterprise application

Arrow left icon
Product type Paperback
Published in May 2016
Publisher Packt
ISBN-13 9781782175339
Length 204 pages
Edition 1st Edition
Languages
Arrow right icon
Toc

Performance


Performance is a significant architectural concern. We showed how to enable statistics in Hibernate and collect various metrics via JMX in Chapter 7, Metrics and Statistics, to help you identify bottlenecks. Throughout this book, we have identified ways of improving performance. Let's revisit some of these concepts here and discuss how they are effective.

Lazy loading

The decision to use lazy loading depends on specific situations. It is important to understand how lazy loading is accomplished. As we discussed, when you load an entity, Hibernate creates and returns a proxy object, which is uninitialized. (This doesn't occur when you use the get method.) Only when you access one of the attributes of the loaded entity does, Hibernate submit a database query to fetch the values. The same concept applies to associated entities. When you fetch the parent entities, the lazy-loaded associated entities are not fetched until they are accessed. This causes an extra trip to the database....

lock icon The rest of the chapter is locked
Register for a free Packt account to unlock a world of extra content!
A free Packt account unlocks extra newsletters, articles, discounted offers, and much more. Start advancing your knowledge today.
Unlock this book and the full library FREE for 7 days
Get unlimited access to 7000+ expert-authored eBooks and videos courses covering every tech area you can think of
Renews at $19.99/month. Cancel anytime
Banner background image