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.
We have business restriction in accessing the database only through stored procedure calls. Caching
Share
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.