ObjectDB ObjectDB

Jboss 6 persistence.xml startup error

#1

Hi,

 I'm trying to migrate a small EJB 3.1 project from Postgres to ObjectDb to test out feasibility, but I keep getting stuck on setting up the persistence.xml on JBoss 6 AS.

Here is my setup:

<persistence version="2.0" xmlns="http://java.sun.com/xml/ns/persistence"
             xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
             xsi:schemaLocation="
      http://java.sun.com/xml/ns/persistence
      http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
  <persistence-unit name="testUnit" transaction-type="JTA">
    <provider>com.objectdb.jpa.Provider</provider>
    <properties>
      <property name="javax.persistence.jdbc.url" value="$objectdb/db/guests.odb"/>
      <property name="javax.persistence.jdbc.user" value="admin"/>
      <property name="javax.persistence.jdbc.password" value="admin"/>
    </properties>
  </persistence-unit>
</persistence>

and here is the error:

2011-04-04 18:35:23,098 ERROR [org.jboss.kernel.plugins.dependency.AbstractKernelController] (WorkerThread#0[127.0.0.1:53209]) Error installing to Start: name=persistence.unit:unitName=test.war#testUnit state=Create: java.lang.RuntimeException: Specification violation [EJB3 JPA 6.2.1.2] - You have not defined a jta-data-source for a JTA enabled persistence context named: testUnit
        at org.jboss.jpa.impl.deployment.PersistenceUnitInfoImpl.<init>(PersistenceUnitInfoImpl.java:124) [:2.0.0]

I have followed the examples also - but none refer to the jta-data-source element in the persistence.xml that I managed to find. Also, when setting up a jboss datasource it requires a SQL driver (confusing a bit!). Anyhow solved this without referring to the API ? I don't want to use the API as I much rather declarative-ly set it up.

Thanks

edit
delete
#2

There were a few issues in using ObjectDB with JBoss AS 6.0.

The good news is that a new build of ObjectDB that was just released (2.2.0_03) fixes the main problems and seems to work well with JBoss AS 6.0.

The following are general guidelines for how to use ObjectDB with JBoss AS 6.0 in Java EE 6 application:

  • A JTA data source is ignored by ObjectDB but is required by JBoss. See the attached persistence.xml file. If the IDE requires specifying SQL driver, etc - specify default settings (anything that is acceptable) and later, if necessary, edit the persistence.xml file manually, following the attached sample file.
  • Use objectdb-jee.jar instead of objectdb.jar. The new jar (objectdb-jee.jar) was added to ObjectDB distribution in the new build. It is identical to objectdb.jar, except that JPA and JTA classes are excluded. This is required in order to avoid class collision with JPA and JTA classes that are part of the JBoss server.
  • Due to a JBoss bug - you might have to use JBoss 6.1 (build 32 was tested successfully with ObjectDB) and replace the jboss-reflect.jar file, as explained on https://community.jboss.org/message/591851.
  • To install JBoss AS 6.0 from within NetBeans - version 7.0 beta (or above) is required.
  • A WAR file that contains the Java EE 6 Guestbook tutorial adjusted to JBoss AS 6.0 (including the objectdb-jee.jar) is attached. Just drop it in the JBoss's deploy directory, start JBoss (run) and open the browser at http://localhost:8080/Guestbook/guest (if JBoss is configured to use port 8080).
  • The default ObjectDB home directory is the deploy directory: the default ObjectDB configuration can be placed at deploy/object.conf, the ObjectDB log directory is deploy/log, and the database is created by default at deploy/db/guests.odb.

I hope that the instructions above will help.

 

ObjectDB Support
edit
delete
#3

Thanks for the detailed solution. I think I'll give it a go now with Jboss 6 in the interim while Jboss 6.1 gets ready for a mature release. The examples are a great help!

 

Thanks

edit
delete

Reply

To post on this website please sign in.