zkarthik
zkarthik

Reputation: 959

Hibernate for stored procedure access

We have business restriction in accessing the database only through stored procedure calls. Caching is also not allowed. Is there value in using Hibernate framework where in you are not using the features like building object relationship based complex queries or caching? We are using considering using the lightweight jdbc option.

Upvotes: 3

Views: 647

Answers (2)

Ryan Bair
Ryan Bair

Reputation: 2634

Hibernate's lazy loading and entity mapping still brings a lot of value to the table. I would go for it.

Upvotes: 1

duffymo
duffymo

Reputation: 308948

Hibernate makes sense if you're going to map objects to tables. I don't see how HQL can benefit you otherwise.

I would look into JDBC or Spring JDBC instead.

Upvotes: 3

Related Questions