Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

CDO/Hibernate Store

< CDO(Redirected from CDO Hibernate Store)


The CDO Hibernate store is a CDO store implemented with Teneo and Hibernate. This combination of tools gives the user/developer the following advantages:

  • Database support: Hibernate provides superior runtime Object Relational Mapping to many different relational databases. We test with mysql and hsqldb but there are no known obstacles for using CDO on other databases supported by Hibernate.
  • HQL: the CDO Hibernate store makes it possible to execute HQL queries on the client. The complete HQL syntax is supported (incl. joins, aggregations, functions, etc.).
  • Automatic Model-Relational Mapping: Teneo takes care of automatic mapping of your model to a relation database schema. The relational database schema explicitly implements the domain model. The automatic mapping can be manually overridden using JPA annotations in the model or in a separate XML file. All JPA annotations (and several Hibernate extensions) are supported.


The CDO Hibernate store is focused on creating a human-understandable, sensible, practical and performant relational database schema. The store is especially suited for data oriented business administrative (ERP-like) applications with a RCP interface.

Documentation

The documentation for the CDO Hibernate Store consists of the following sections.

  • Quick start: in just a few steps you have an up-and-running CDO server with Hibernate and automatic mapping using Teneo.
  • Architecture: describes how the different components of the store operate together.
  • Download and install: lists the required plugins and their download locations. In addition the examples projects used in the tutorials are specified (with their cvs location).
  • Configuration: discusses the setup and configuration of the CDO Hibernate store (database, launch configuration, model, etc.). The description is supported by an example Eclipse project which is available in cvs.
  • Tutorial: gives a quick intro in how to connect from a client to the CDO Hibernate datastore. This tutorial illustrates that for a standard usage there is no difference in using a CDO Hibernate store compared to other stores. A downloadable Example Eclipse project is used to give the reader a good start. The examples use junit testcases on the client to facilitate easy testing and debugging.
  • Hibernate Query Language (HQL) support: several examples of HQL queries, ranging from very simple to queries with functions and array results. The example queries can be run directly using a provided Eclipse project.
  • Model relational mapping page describes how the generated model-relational mapping can be extended and overridden using JPA annotations in the model. The same example Eclipse project as in previous steps is used to illustrate the functions and features.
  • Auditing: describes the auditing support in the CDO Hibernate Store.

Dependencies

The Hibernate store is build and distributed as part of CDO 4.1, 4.2 and upcoming 4.3 (and also older versions). CDO 4.2 is the CDO release for the Eclipse 4.3 (Juno) release. CDO 4.1 is the CDO release for the Eclipse 3.8 (Juno) release.

Note: the Hibernate store is not available on the Eclipse update sites, you have to use CDO update sites (see download & install) to download the CDO Hibernate Store for Indigo.

The Hibernate Store is tested with this software:

Visit the download page to download the required dependencies.

Plugins - Dev Projects

The CDO Hibernate Store can be found in git in the following location: http://git.eclipse.org/c/cdo/cdo.git/

To clone the cdo repository: git clone http://git.eclipse.org/c/cdo/cdo.git/

The functionality is implemented in the following plugins:

The documentation makes use of three example projects:

(Un)Supported Functions and Features

Currently the CDO Hibernate Store successfully passes 1000+ testcases.

The CDO Hibernate Store supports the main CDO features except for the following:

  • auditing and revisions: this topic is being researched. Support for auditing as it is currently implemented in CDO implies that there are no foreign key constraints in the database. This has to be matched with the focus of the CDO Hibernate store on supporting more traditional ERP/Business Administration applications.
  • Branching: is not supported

See also the list of Teneo Auditing limitations, these limitations also apply here.

The following details are related to differences in the way CDO works natively and the Teneo mapping layer:

  • Non-transient containment ereference with a transient e-opposite container ereference: CDO will ignore the transient container ereference, while Teneo and the Hibernate Store will try to persist it. This results in runtime exceptions. This case is a very special case, support for this case will be provided when it is specifically requested on the EMF newsgroup.
  • CDOStaleReferencePolicy option is not supported: the Hibernate Store will treat all stale references as an exception.
  • Move of child from one container to another container: Hibernate does not support moving of a child (part of a containment or orphan-delete association) to another parent. Hibernate will throw an exception with a message like: 'Deleted object will be re-saved'. To work around this issue make a shallow copy of the child and insert the copy in the new parent.

Wikis: CDO | Net4j | EMF | Eclipse

Back to the top