If you are using existing databases with an application server, you
might want to consider a Java Data Objects (JDO) interface. JDO allows you to
move the mapping of data from the application server or application side to one
location. This differs from using
JDBC with application servers (new window)
or using SQLJ
with application servers (new window).
With JDBC, the mapping needs to be done above the JDBC interface. With JDO, the
mapping is done below the JDO interface.
JDO is considered a form of transparent persistence. For more information on
how transparent persistence compares to JDBC, see transparent persistence vs. JDBC call-level
interface (new window).
Also, be sure to check out how JDO can be part of integrated J2EE
architecture solutions (new window).
Using JDO, as shown in this diagram, will require data conversion between the
interface and the database. See JDO
data conversion.
