vote up 1 vote down star
1

I am currently testing out using OSGi. I am running this through Eclipse. I want to have my DAO layer as part of an OSGi solution, but my first stumbling block is this error:

Jun 29, 2009 6:12:37 PM org.hibernate.cfg.annotations.Version <clinit>
INFO: Hibernate Annotations 3.3.0.GA
Jun 29, 2009 6:12:37 PM org.hibernate.ejb.Version <clinit>
INFO: Hibernate EntityManager 3.3.0.GA
Jun 29, 2009 6:12:37 PM org.hibernate.ejb.Ejb3Configuration configure
INFO: Could not find any META-INF/persistence.xml file in the classpath

I have tried putting the persistence.xml file in a lot of different places, to no avail. Any ideas on what I am doing wrong?

Is there a way to manually load the persistence.xml?

The activator looks like this:

package com.activator;


public class PersistenceActivator implements BundleActivator {

    @Override
    public void start(BundleContext arg0) throws Exception {

    	EntityManagerFactory emf = Persistence
    			.createEntityManagerFactory("postgres");
    	EntityManager em = emf.createEntityManager();

    	SimpleDaoImpl dao = new SimpleDaoImpl();
    	dao.setEntityManager(em);

    }

    @Override
    public void stop(BundleContext arg0) throws Exception {
    	// TODO Auto-generated method stub

    }

}

Here is what my directory structure looks like:

alt text

Here is my Manifest.MF

Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Dao Plug-in
Bundle-SymbolicName: Dao
Bundle-Version: 1.0.0
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Import-Package: org.osgi.framework;version="1.4.0"
Bundle-Activator: com.activator.PersistenceActivator
Export-Package: com.dao.service
Require-Bundle: HibernateBundle;bundle-version="1.0.0"

HibernateBundle contains all of the Hibernate and Persistence Jars.

Here is my Persistence.xml

<?xml version="1.0" encoding="UTF-8"?>

<persistence>

    <!-- Sample persistence using PostgreSQL. See postgres.txt. -->
    <persistence-unit name="postgres" transaction-type="RESOURCE_LOCAL">

    	<properties>


    		<property name="hibernate.archive.autodetection" value="class" />

    		<!--
    			Comment out if schema exists & you don't want the tables dropped.
    		-->
    		<property name="hibernate.hbm2ddl.auto" value="create-drop" /> <!-- drop/create tables @startup, drop tables @shutdown -->


    		<!-- Database Connection Settings -->
    		<property name="hibernate.connection.autocommit">true</property>
    		<property name="hibernate.connection.driver_class" value="org.postgresql.Driver" />
    		<property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect" />
    		<property name="hibernate.connection.username" value="postgres" />
    		<property name="hibernate.connection.password" value="postgres" />
    		<property name="hibernate.connection.url" value="jdbc:postgresql://localhost:5432/test" />

    		<!-- Not sure about these...  -->
    		<property name="hibernate.max_fetch_depth">16</property>
    		<property name="hibernate.jdbc.batch_size">1000</property>
    		<property name="hibernate.use_outer_join">true</property>
    		<property name="hibernate.default_batch_fetch_size">500</property>

    		<!-- Hibernate Query Language (HQL) parser. -->
    		<property name="hibernate.query.factory_class">
    			org.hibernate.hql.ast.ASTQueryTranslatorFactory</property>

    		<!-- Echo all executed SQL to stdout -->
    		<property name="hibernate.show_sql">true</property>
    		<property name="hibernate.format_sql">false</property>

    		<!-- Use c3p0 for the JDBC connection pool -->
    		<property name="hibernate.c3p0.min_size">3</property>
    		<property name="hibernate.c3p0.max_size">100</property>
    		<property name="hibernate.c3p0.max_statements">100</property>

    		<property name="hibernate.cache.provider_class" value="org.hibernate.cache.HashtableCacheProvider" />

    	</properties>
    </persistence-unit>



</persistence>

Things I have tried in the Manifest's Classpath with no luck:

Bundle-ClassPath: ., META-INF/persistence.xml

Bundle-ClassPath: ., ../META-INF/persistence.xml

Bundle-ClassPath: ., /META-INF/persistence.xml

Bundle-ClassPath: ., ./META-INF/persistence.xml

Bundle-ClassPath: ., META-INF

Bundle-ClassPath: ., ../META-INF

Bundle-ClassPath: ., /META-INF

Bundle-ClassPath: ., ./META-INF

Bundle-ClassPath: ., C:\Workspaces\OSGiJPA\Dao\META-INF\persistence.xml

Bundle-ClassPath: ., C:\Workspaces\OSGiJPA\Dao\META-INF

flag

4 Answers

vote up 1 vote down check

I am not using persistence.xml but hibernate.cfg.xml which is similar:

src/main/resource/hibernate/hibernate.cfg.xml

In my Activator I am getting the file via the bundle context: Here is some example code how I do it and also reference that file:>

private void initHibernate(BundleContext context) {
    	try {
    		final AnnotationConfiguration cfg = new AnnotationConfiguration();
    		cfg.configure(context.getBundle().getEntry("/src/main/resource/hibernate/hibernate.cfg.xml"));
    		sessionFactory = cfg.buildSessionFactory();

    	} catch (Exception e) {
    		// TODO Auto-generated catch block
    	}
    }

As you can see line which gets the config file is:

context.getBundle().getEntry("/src/main/resource/hibernate/hibernate.cfg.xml")

As you can see my hibernate.cfg.xml is NOT inside the META-INF folder. It is just in the root folder under /src/......

Hope that helps.

Christoph

link|flag
vote up 2 vote down

Use EclipseLink and forget about Hibernate and other implementations, because :

  • You'll have to play with the classloader too much... Thread.currentThread().setContextClassLoader(...)

  • You'll be tempted to set the bundle-classpath attribute and add dependencies manually instead of installing jar bundles.

  • You'll get provider not found errors or you might not be able to find persistence.xml

All the above efforts might not work after many attempts.

However, with EclipseLink it's a no brainer, the implementation was designed to work out of the box in an OSGI environment and there aren't any class loading headaches.

link|flag
vote up 0 vote down

The Meta-inf directory is not on the classpath. This should work by simply placing it under your src dirctory. If you want it in a separate location, then you will have to specify the Bundle-Classpath to include that directory. By default the classpath is '.'.

link|flag
I just tried moving the META-INF to the src directory.. Still doesn't work. I've also tried explicitly pointing to the persistence.xml in the Bundle-Classpath and it doesn't work. – Grasper Jun 30 at 13:12
@Grasper - Don't move the directory, move the persistence.xml file into source so when it is compiled it is on your classpath. – Robin Jun 30 at 18:51
so I put persistence.xml into src, and I have '.' on the classpath and it still doesn't work. Thanks for your help :-) – Grasper Jun 30 at 19:21
vote up 0 vote down

Try using Bundle-ClassPath like this in your manifest

Bundle-ClassPath: ., /location/of/persistence.xml

link|flag
No luck. I've tried: Bundle-ClassPath: ., META-INF/persistence.xml Bundle-ClassPath: ., ../META-INF/persistence.xml Bundle-ClassPath: ., /META-INF/persistence.xml Bundle-ClassPath: ., ./META-INF/persistence.xml Bundle-ClassPath: ., META-INF Bundle-ClassPath: ., ../META-INF Bundle-ClassPath: ., /META-INF Bundle-ClassPath: ., ./META-INF Bundle-ClassPath: ., C:\Workspaces\OSGiJPA\Dao\META-INF\persistence.xml Bundle-ClassPath: ., C:\Workspaces\OSGiJPA\Dao\META-INF – Grasper Jun 30 at 13:07
Didn't show up right, so I put it in the post itself – Grasper Jun 30 at 13:11
move persistence.xml to the root of the jar bundle? That should pick it up – bwobbones Jul 1 at 14:24

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.