Any one can give me the gist of the main advantage of using Hibernate?
|
closed as not constructive by Bo Persson, Jehof, gnat, Henry, Stu Jan 27 at 20:39
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
Hibernate lets you develop a maintainable data access layer with relative ease. Hibernate is built on top of JDBC, so obviously it cannot do anything that plain JDBC cannot do. Hibernate is a large codebase; if you are building your own data access layer using plain JDBC, you will have lot more code to write to match its features. In simple reporting applications, it is relatively easy to code up the data access layer features you need; but as the application gets more complicated, the amount of code one has to write increases. Let me give you few examples that are non-trivial to implement by hand, but comes out of the box with Hibernate:
As I hinted before, implementing these by hand is not impossible - afterall, Hibernate does it. But they take significant investment in time. In many (most?) applications, concentrating on the complexities of the business logic would be a better investment of developer time. Please see my comment in another thread regarding Hibernate performance. |
|||
|
|
|
I've found it useful if you need your application to work with several different databases. Hibernate will make it much easier to swap out a MySql DB with an Oracle one for example. |
|||
|
|
|
Easier development, but only for simple applications. See the answers in Question about the benefit of using an ORM for more. |
|||||
|
|
ORMs (like Hibernate) make it possible to use POJOs / POCOs that have solid, reliable database backing with a minimum of fuss. (Note: quantity of fuss is not guaranteed to be zero, but usually less than with other solutions. YMMV.) |
|||
|
|
|
Hibernate increases the productivity and maintainability of the project.
|
|||
|
|
|
Not having to write your own DAL. There might be a steep learning curve initially but once you get the gist of it, it does lead to quicker development. |
|||
|
|