From: Brad C. <bra...@wo...> - 2002-10-18 07:54:28
|
>Do you know was hibernate > ever deployed in a larger commercial project? Say over > 50 persistable classes? we use hibernate extensively in our online content management system. the only jdbc in the whole application is for streaming blobs. > Have you considered to make it a jakarta project? there is already a somewhat similar project there: http://jakarta.apache.org/ojb/. while they are similar in the sense that they are object/relational mappers, they have differenct features and architectures. i have never used OBJ so i can't speak for it, but i have been very happy with hibernate's functionality, simplicity (read: ease of use) and robustness. > The second option I am looking at is jboss v3 and > using their CMP 2.0 persistence. Jboss is a valid > option because I can run most of the code efficiently > from within the conatainer and only send the results > back to the clients when ready. How does hibernate > compare to jboss CMP2.0 persistence? Do you know? O/R mapping and CMP are quite different. off the top of my head, i prefer O/R mapping because: 1. it lends itself to more agile development 2. is is better suited to applications that model their problem domain in a very OO manner hibernate works well in stateless session beans within jboss (and probably any other j2ee app server) with container managed transactions. brad |