Integrating BTM with Hibernate
Hibernate can be integrated straight with any JTA transaction manager.
The biggest added value (omitting the fact that you can use Hibernate and two databases) is Hibernate's Current Session context management with JTA. You do not have to take care about opening nor closing Session as Hibernate will automatically bind them to the JTA transaction's lifecycle. You just have to make sure JTA transactions are properly started and ended.
Contents
- JTA datasources
- Setting up a JNDI server
- API way: Creating the datasources
- Resource Loader way: Creating the datasources
- Hibernate Session factories
- Datasource JNDI location
- Current session context
- Transaction factory class
- Transaction manager lookup class
- SessionFactory XML configuration files
- End result
- Download
JTA datasources
Hibernate cannot directly create a BTM PoolingDataSource. You will have to create them yourself (either via the API or the Resource Loader) and make sure they are bound to a JNDI server.
Setting up a JNDI server
You have to bind the datasources to some JNDI server. You can use any one you wish, including the one embedded in your application server.
In the case you want to run Hibernate in a standalone application, you can use Tomcat's JNDI server as it is very easy to use it in a standalone J2SE application. Just create a jndi.properties file at the root of your classpath. It should only contain this line:
Then add these two jar files to your classpath:
They are available in any Tomcat 5.5 distribution, just look into the TOMCAT_HOME/common/lib folder.
This will configure Tomcat's JNDI server as the default implementation. It is a simple intra-VM server that implements the most important JNDI features. You can now just create a InitialContext with the no-args constructor to have access to it.
API way: Creating the datasources
As you can expect, you will need to create one PoolingDataSource per database. Say that you want to use two Embedded Derby databases, and configure them via the BTM API. Here is what your code would look like:
| Datasource's unique name and JNDI location correspondence It is usually a good idea to set a datasource's unique name to the same value as its JNDI location although this is not mandatory. |
Finally, here is the code to bind the datasources:
Resource Loader way: Creating the datasources
You can use BTM's Resource Loader instead of the BTM API. It is usually a good idea when you want to create a fully standalone application as you can get rid of the datasources creation, JNDI binding and shutdown code.
Create a datasources.properties file in the current directory containing these properties:
| Resource Loader JNDI binding When you configure the Resource Loader to bind datasources to JNDI (by setting the |
In your application code, you will have to configure BTM to use the resource loader:
This has the exact same behavior as creating the PoolingDataSource objects and binding them to JNDI yourself. It is just more convenient.
Hibernate Session factories
You need to configure exactly one SessionFactory per datasource.
Datasource JNDI location
You have to tell Hibernate where to get the BTM datasource via JNDI. Add a connection.datasource property and set its value to the JNDI location of your datasource:
Current session context
You have to set current_session_context_class to jta.
Transaction factory class
You have to set transaction.factory_class to org.hibernate.transaction.JTATransactionFactory.
Transaction manager lookup class
You have to set transaction.manager_lookup_class to an implementation of TransactionManagerLookup that you have to create yourself. Here is an example implementation if this interface:
| Hibernate's version of BitronixTransactionManagerLookup The |
Then add this property:
SessionFactory XML configuration files
Here is what the hibernate_testDS1.cfg.xml file will look like for the first datasource. Some other mandatory properties also have to be added, like the dialect, cache.provider_class and of course the required object mappings.
And here is the hibernate_testDS2.cfg.xml for the second datasource:
End result
Now that Hibernate and BTM are properly configured, you can simply use the JTA and Hibernate APIs in your application.
Application code
Here is what your code will look like when you want to update the content of both databases atomically:
Say that persistUser() creates a new user, in no way will a user be created in one database and not in the other.
Download
You can download a sample runnable application putting these explanations in practice. It contains all the code that has been skipped for clarity in this page. Both the API and Resource Loader ways are implemented so you can try both and see which one you prefer.
You can download this demo here: HibernateBTM.zip.
There is an ant build.xml file included as well as a the necessary batch and shell scripts required to run the application from Windows or Unix.
Before you run the application, you have to create the Derby database. Just run the included derby-create.sh or derby-create.bat script to do so, it will create two directories called users1 and users2. Then you can start the demo by either running run_api.sh or run_api.bat for the API version, run_rl.sh or run_rl.bat for the Resource Loader version.
Here is the list of JAR files with version required to run this demo. They're all included in the downloadable ZIP file.
JAR name |
Version |
|---|---|
btm-1.0.jar |
BTM 1.0 |
geronimo-spec-jta-1.0.1B-rc4.jar |
BTM 1.0 |
slf4j-jdk14.jar |
SLF4J 1.0.2 |
derby-10.2.2.0.jar |
Derby 10.2.2.0 |
derbytools-10.2.2.0.jar |
Derby 10.2.2.0 |
antlr-2.7.6.jar |
Hibernate 3.2.1 |
asm.jar |
Hibernate 3.2.1 |
cglib-2.1.3.jar |
Hibernate 3.2.1 |
commons-collections-2.1.1.jar |
Hibernate 3.2.1 |
commons-logging-1.0.4.jar |
Hibernate 3.2.1 |
dom4j-1.6.1.jar |
Hibernate 3.2.1 |
hibernate3.jar |
Hibernate 3.2.1 |
naming-factory.jar |
Tomcat 5.5.23 |
naming-resources.jar |
Tomcat 5.5.23 |