Re: ORM or JDBC?
Michal Kleczek wrote:
carmelo wrote:
I would like your opinion regarding the use of ORM in web applications
built with GWT. I'm a little reconsider about the ORM, and I wonder
whether it is worth to use in web applications built with GWT.
GWT is a graphical user interface library, right? What possible influence on
the choice of persistence architecture could that have?
Or am I wrong about GWT?
It depends on many things but IMHO the most important is "Do you have a rich
domain object model?" (and by "rich" I mean you have a lot of important
processing in your OO code - not just getters and setters).
If not, go back and develop one before proceeding.
Now we can proceed in the certainty that you do have one.
If your app is only a way to manipulate (add/update/delete) data in a
database then I would strongly suggest _not_ using any ORM. It would only
add a lot of Java and/or XML/whatever code without any real benefit.
"A lot"? No.
Certainly no more than the JDBC code you'll need instead.
And "without any real benefit"? Where do you get this stuff?
The real benefit, even for small projects, is the clean and manageable
conversion between data and object models, and a natural mapping of
relationships to collections.
...
What would be real advantages in addition to greater independence and
portability?
Those aren't even advantages of an ORM.
Why do you think ORM gives you greater independence (from what?) and
portability? Are you going to port your app to a non-relational DBMS?
Portability is an overrated aspect of ORMs, but "relational DBMS" is no
guarantee of portability. When even the Oracle RDBMS deviates from the SQL
standard, and don't even get me started on MySQL, you can bet "relational"
won't help. But so what? How often have you had to change database systems
in a project?
The advantage of an ORM is to present a persistent object model to an
application and to relieve the application of boilerplate datastore-access
code. It doesn't do quite as well for bulk, or set-oriented operations, which
after all are the stock in trade of the relational model. In practice you'll
need mostly ORM code (that is, regular object code) and some "raw" JDBC,
depending on the mix of operations in your process.
I don't have any idea what "Michal" means by a "rich domain object model" that
could be something you wouldn't have regardless, so that's a red herring. You
need an object model. Period. It needs to be as "rich" as the domain you're
modeling. So take that comment as advice to have such a model, not as a
decider on the ORM question.
If you do use an ORM, use JPA (Java Persistence API)! Don't make the mistake
of using older specifications (e.g., "classic" Hibernate). The Oracle Java EE
tutorial has good information on how to do that. You can use Hibernate (in
its JPA mode!), EclipseLink (the /de facto/ reference implementation) or
Apache OpenJPA.
The problem with ORMs is that people use them as mere data-access libraries.
BRAAHHHHH! Wrong.
Use them to maintain an object model, not a data model. There are subtleties
to things like EntityManager lifetime and scope that flow naturally from an
object orientation, but will completely screw up your application (as I've
seen on multi-million-dollar projects) if you think of an ORM as a sort of
expanded JDBC.
A few measly hours of study should keep you out of the worst trouble.
--
Lew
Honi soit qui mal y pense.
http://upload.wikimedia.org/wikipedia/commons/c/cf/Friz.jpg