Definitely do proof of concept before committing to anything. I migrated to Hibernate from OJB (and though I would have migrated anyway since Hibernate is much better), some things didnt work as I had thought after reading docs. Here is an example: if you have an object, and it has a Set inside, with a 1-to-many, and you do not have the exact same Set instance (i.e. if you serialize over RMI), then it will not save back to the database in the same way as it would if you didnt serialize (e.g. dirty checking is out the window)... Anyways, Hibernate is good, you should consider moving to it, but do proof of concepts to see for yourself. Chris
|