Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use Kundera method to connect my play application (Play FW 2.0.4) to a Cassandra database. As I don't want to messup code folders in Play project, I created a Runnable Jar file (To include other Jars) with already have an XML file inside (persistence.xml). But when I use the created Jar, Play throws an error which says that

[PersistenceException: No Persistence provider for EntityManager named cassandra_pu]

I think it doesnot know where the persistence.xml file is...
Can anyone show me how to add external xml file to the Play framework so extenal Jar can use it?
Thank you very much. P/S Full error log

! @6c1olnn34 - Internal server error, for request [POST /Register] ->

play.core.ActionInvoker$$anonfun$receive$1$$anon$1: Execution exception [[PersistenceException: No Persistence provider for EntityManager named cassandra_pu]]
at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:134) [play_2.9.1.jar:2.0.4]
at play.core.ActionInvoker$$anonfun$receive$1.apply(Invoker.scala:115) [play_2.9.1.jar:2.0.4]
at akka.actor.Actor$class.apply(Actor.scala:318) [akka-actor.jar:2.0.2]
at play.core.ActionInvoker.apply(Invoker.scala:113) [play_2.9.1.jar:2.0.4]
at akka.actor.ActorCell.invoke(ActorCell.scala:626) [akka-actor.jar:2.0.2]
at akka.dispatch.Mailbox.processMailbox(Mailbox.scala:197) [akka-actor.jar:2.0.2]
Caused by: javax.persistence.PersistenceException: No Persistence provider for EntityManager named cassandra_pu
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:69) ~[hibernate-jpa-2.0-api.jar:1.0.1.Final]
at javax.persistence.Persistence.createEntityManagerFactory(Persistence.java:47) ~[hibernate-jpa-2.0-api.jar:1.0.1.Final]
at rug.wnc.lsycs.connector.LSYCSConnector.main(LSYCSConnector.java:17) ~[LSYCSConnector.jar:na]
at models.User.create(User.java:37) ~[classes/:na]
at controllers.Application.processRegisterUser(Application.java:49) ~[classes/:na]
at Routes$$anonfun$routes$1$$anonfun$apply$5$$anonfun$apply$6.apply(routes_routing.scala:88) ~[classes/:na]

Xml files:

<?xml version="1.0" encoding="UTF-8"?>
<persistence 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"
version="2.0">
<persistence-unit name="cassandra_pu">
    <provider>com.impetus.kundera.KunderaPersistence</provider>     
    <properties>            
        <property name="kundera.nodes" value="localhost"/>
        <property name="kundera.port" value="9160"/>
        <property name="kundera.keyspace" value="Test"/>
        <property name="kundera.dialect" value="cassandra"/>
        <property name="kundera.client.lookup.class"  value="com.impetus.client.cassandra.pelops.PelopsClientFactory" />
        <property name="kundera.cache.provider.class" value="com.impetus.kundera.cache.ehcache.EhCacheProvider"/>
        <property name="kundera.cache.config.resource" value="/ehcache-test.xml"/>                  
    </properties>       
</persistence-unit>

I also tried putting persistence.xml file in conf/WEB-INF(I created WEB-INF by myself) and some other locations but it did not work

share|improve this question
Not sure.. What have a look on this thread. stackoverflow.com/questions/9674729/… -Vivek – vivek mishra Oct 12 '12 at 2:29

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.