Read posts about gotcha in other sites

Hibernate executeUpdate gotcha!!

Posted by Emilio Davis on 11/12/2009 at 11:14 AM

Hibernate is one of the best object/relational persistence and query service. Basically it lets you code your application using POJOs and it takes care of persisting it to a RDBMS back-end. If you couple this with a HA/High performance cache service like JbossCache as a second level cache you get a very fast, high availability, easy to code solution, to manage the data in your application.

In Hibernate you can "find" the objects you need (using a primary key), modify them and the back-end will make sure the changes are propagated to the database. Hibernate also lets you use a

(Read more)