I wag going through a hibernate tutorial, where they say that hibernate is not suitable for data centric application. I am very much impressed by the 'object oriented structure' it gives to the program, but my application is very much data centric(it fetches and updates huge number of records. But I dont use any stored procedures). Cant I use hibernate?Are there any wrappers written over hibernate, which I can use for my application?Any help is appreciated.
|
feedback
|
|
I am not sure about specific meaning of phrase | |||||||
feedback
|
|
In principal you can, but it tends to be slow. Hibernate more or less creates an object for every row retrieved from the database. If you do this with large volumes of data, performance takes a serious hit. Also updates on many rows using a single update have only very basic support. A wrapper won't help, at least with the object creation issue. | |||
|
feedback
|
|
There are many advantages of using Hibernate, when one gets their object model correct as a developer there is a lot of appeal in interacting with the database via objects but in practice I have found initially Hibernate is great but becomes very frustrating when you come against issues like performance and fault finding. When it comes to decision on the DA (Data Access) layer I ask myself this question. Am I writing an application which has a requirement to run an different databases? If the answer is yes then I will consider an (ORM) like Hibernate. If its no then I will normally just use JDBC normally via Spring. I feel that interacting with the database via JDBC is a lot more transparant and easier to find faults and performance tune. | |||
|
feedback
|