/
Hibernate(ORM)
Hibernate(ORM)
Why is it being used in Eshopbox?
Integration layer between code and database
Audience
All Software backend and Mean Stack Engineers
Reading Material
Link | Level |
---|---|
Beginner | |
Intermediate |
Dos and Don’ts
Dos
Hibernate session should be short-lived
Always close used sessions.
Always start a transaction when required.
Use transactions in Bulks.
Try to use HQL instead of native queries.
Use named parameters
Auto closable session : https://auperator.atlassian.net/wiki/spaces/B/pages/4104192001
Don’ts
Only select required number of columns in fetch.
Perform all Logic in Your Business Code
call flush or commit only when required.
Avoid Update or Delete Huge Lists of Entities One by One
Avoid using native queries
, multiple selections available,
Related content
Hibernate Hikari config:
Hibernate Hikari config:
More like this
Mongoose (ODM) & Sequelize (ORM)
Mongoose (ODM) & Sequelize (ORM)
Read with this
MySQL
MySQL
More like this
Memcache
Memcache
Read with this
Logging
Logging
More like this
What is OAuth2.0
What is OAuth2.0
Read with this