In Part 1, I provided an overview of available persistence mechanisms and their implementations, and introduced the Java Data Objects (JDO) approach to persistence. In Part 2, I conclude this series by looking more closely at the two competing JDO standards: the Sun Microsystems JDO and the Castor JDO. Both specifications provide unified, simple, and transparent persistence interfaces between Java application objects and data stores, and create an interesting alternative to entity beans.
Read the whole series on Java Data Objects:
Sun JDO
The Sun JDO architecture provides application programmers a Java-centric view of persistent information. Sun's specification defines a standard API for data contained in various enterprise information systems, such as enterprise resource planning, mainframe transaction processing, and database systems. The architecture also follows the Java Connector Architecture (JCA), which defines a mechanism set for integrating an executive information system with an application server.
Architecture
Figure 1 illustrates the Sun JDO architecture. The specification allows multiple JDO implementations -- possibly attached to different data stores -- to be plugged into an application server or used directly in a two-tier architecture. This approach lets application components access the underlying data stores using one consistent Java-centric data view. The JDO implementation provides the necessary mapping from Java objects into the underlying data store's special data types and relationships.
Before delving into the Sun JDO interfaces, I discuss the specification's three fundamental concepts:
- JDO instance
- First-class objects
- Second-class objects
JDO instance
A JDO instance is a Java class instance that implements the application functions and represents data in an enterprise data store. A JDO instance has an important limitation: its class must always implement the PersistenceCapable
interface (defined below), either explicitly by the class writer or implicitly by the enhancer's results.
First-class objects
Instances of the PersistenceCapable
classes that have JDO identity represent first-class objects; these objects are stored in a data store with their associated second-class objects (if any) and primitive values. First-class objects are unique: when a PersistentManager
(defined below) instantiates one into memory, that same PersistentManager
manages an instance representing that first-class object, though other PersistentManager
s might manage other instances of that same class.
Second-class objects
Also PersistenceCapable
instances, second-class objects differ from first-class objects in that they have no JDO identity of their own. Second-class objects notify their first-class objects of their modification; that modification reflects as a change to that first-class object. Second-class objects are stored in the data store as part of a first-class object only.
A good example of a first-class object: an object of class Order
. An Order
usually has one or more instances of OrderLine
items. OrderLine
is a second-class object example.
Now, I'll detail the specification's major public interfaces:
PersistenceManagerFactory
PersistenceManager
PersistenceCapable
Transaction
Query
PersistenceManagerFactory
The PersistenceManagerFactory
creates PersistenceManager
instances for application use. It also lets application developers configure the persistence layer behavior -- set transaction options, perform connection pool administration, and so on.
In a managed environment, the application uses JNDI (Java Naming and Directory Interface) lookup to retrieve an environment-named object, which is then cast to javax.jdo.PersistenceManagerFactory
.
PersistenceManager
The JDO PersistenceManager
provides the primary interface for JDO-aware application components. PersistenceManager
administers persistent instances' lifecycles, and provides transaction and cache management. It also acts as the Query
interface's factory.
PersistenceCapable
As mentioned before, any user domain class must implement the PersistenceCapable
interface. Note: There are no special methods for persistence; the PersistenceCapable
interface is really empty. You can implement this interface in one of three ways: through source code, an enhancer, or generation (tool-based).
Transaction
Persistence operations usually occur within a transactional context. A one-to-one relationship exists between the PersistenceManager
and the Transaction
. In managed environments, the container provides actual transaction services, but the Transaction
interface provides methods for managing transaction options. In a standalone environment, the Transaction
implementation, provided by the JDO software vendor, must ensure a successful transaction -- commit or rollback.
Cache management and JDO instance lifecycle
Every JDO object (instance) goes through a series of state changes in its lifetime. The Sun JDO specification defines 10 JDO instance states. It requires seven transactional instance states (the remaining three are optional):
- Transient: When an instance is transient, the object lacks persistent identity. A transient instance changes its state to persistent-new (see below) in one of two ways: when passed as an argument to the
makePersistent()
method or when referenced by a persistent instance's persistent field after that same instance commits. - Persistent-new: An instance that is newly persistent in the current transaction. When an application component requests an instance to become persistent, that instance assumes the persistent-new state and receives a persistent identity.
- Persistent-dirty: An instance's state when one or more of its attributes have changed (within the current transaction), but not yet persisted.
- Hollow: A JDO instance that represents specific persistent data in the data store, but whose values are not in the JDO instance.
- Persistent-clean: A JDO instance that represents specific transactional persistent data in the data store, and whose values have not changed (within the current transaction).
- Persistent-deleted: JDO instances that represent specific persistent data in the data store and have been deleted in the current transaction.
- Persistent-new-deleted: JDO instances that represent new persistent instances deleted from the current transaction.
For more information regarding state transitions and JDO instances' persistence states, consult the Sun JDO spec.
Query
An important part of every data manipulation subsystem is its query language. In the Sun JDO, the PersistentManager
instance is a factory for query instances, and queries execute in the context of the PersistentManager
instance.
Queries must conform to the Object Query Language (OQL) grammar, defined in the Object Management Group (OMG) 3.0 OQL Specification. The JDO OQL resembles SQL, except that it operates on Java classes and objects, not tables. A JDO OQL query has at least three elements:
- Class of result.
- JDO instances' candidate collection (usually extent).
- Query filter.
Optional query elements include the following:
- Parameter declaration(s) (follows formal Java syntax parameters).
- Value(s) to be bound.
- Ordering specification.
Query filters can be the following:
- Names of instance fields in the Java objects.
- Operators (a subset of Java operators, for example:
==
,!=
,>
,||
, and so on). Of course not all Java operators make sense for data selection.
Please consult the JDO spec for more details regarding queries.
Below is a JDO query example:
// Example of a query Class target = Employee.class; Extent extent = pm.getExtent (target, false); String filter = "getEmpId () >= 1 && getEmpId () <= 10"; Query query = pm.newQuery (extent, filter); query.setClass (target); query.compile (); Collection result = (Collection) query.execute ();