| Author |
Working with DataNucleus: How I solved the "No persistence providers available" problem.
|
Cameron Wallace McKenzie
author and cow tipper
Saloon Keeper
Joined: Aug 26, 2006
Posts: 4967
|
|
I just published an article to TheServerSide that discusses how to set up and configure your development environment to use DataNucleus as the Java Persistence API (JPA) provider. I've linked to this thread from the article, hoping anyone who is having trouble running the example might post their question here and take advantage of the big brains that make up the JavaRanch community.
Anyways, the darnedest thing about putting together the tutorial was that during the writing, I kept getting this annoying error that said:
Exception in thread "main" javax.persistence.PersistenceException:
No persistence providers available for "PU" after trying the following discovered implementations:
org.datanucleus.jpa.PersistenceProviderImpl
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:180)
at javax.persistence.Persistence.createEntityManagerFactory
Anyways, I saw a few posts on the issue, but no solutions. I knew it had to be a simple mistake, and sure enough, it was. I had the incorrect entry in my persistence.xml file:
The correct entry for this application should have been:
The full persistence.xml file looked like this:
Anyways, that fixed it, just in case anyone is having a similar issue.
-Cameron McKenzie
|
Author of Hibernate Made Easy, What is WebSphere???, JSF 2.0 Made Easy and the SCJA Certification Guides
|
 |
Jignesh Patel
Ranch Hand
Joined: Nov 03, 2001
Posts: 625
|
|
Cameron,
I am trying to connect to HBase using JBoss 7.0.2 and data nucleus 3.0.2 and till now no success.
-Jignesh
|
 |
 |
|
|
subject: Working with DataNucleus: How I solved the "No persistence providers available" problem.
|
|
|