What the benefits are of hibernate over jdbc?
Answer / Pankaj Kumar Pandey
Hibernate offers several benefits over JDBC: (1) It abstracts the underlying database, allowing easy portability between databases. (2) It provides an Object-Relational Mapping (ORM) that reduces the amount of boilerplate code and simplifies the development process. (3) It generates SQL queries on the fly based on the mapped objects, reducing the need for manual querying. (4) It supports advanced features like caching, transactions, and lazy loading.
| Is This Answer Correct ? | 0 Yes | 0 No |
Is merge better than update?
What does an orm solution comprises of?
What is the use of mappedby in hibernate?
What is true for hibernate and jpa?
Explain the general flow of hibernate communication with rdbms.
Why we use hibernate template?
What is table per concrete class in hibernate?
What is the difference between flush and commit in hibernate?
Difference between save() and saveorupdate() method of hibernate?
Mention the key components of hibernate?
What is attribute oriented programming?
What’s hql?