Hibernate ORM (Hibernate in short) is an object-relational mapping framework for the Java language, providing a framework for mapping an object-oriented domain model to a traditional relational database. Hibernate solves object-relational impedance mismatch problems by replacing direct persistence-related database accesses with high-level object handling functions.
It can significantly reduce development time otherwise spent with manual data handling in SQL and JDBC.
Advantages :-
- Speeds-up Development - eliminates the need for repetitive SQL code.
- Reduces Development Time
- Reduces Development Costs
- Overcomes vendor specific SQL differences - the ORM knows how to write vendor specific SQL so you don't have to.
Related posts :-
Hibernate Configuration
No comments:
Post a Comment