未找到该类的实体元数据

时间:2012-06-18 16:33:27

标签: java tomcat persistence entity kundera

我回来了同样的问题...

我正在尝试在我的Cassandra数据库中使用昆德拉(Cassandra ORM)查询,这个查询在其他项目中工作但是当我尝试在webapp中使用(使用tomcat 6.0)时,我收到了这个错误:

com.impetus.kundera.metadata.KunderaMetadataManager  - No Entity metadata found for the class

=> JavaNullPointerException。

但是当我从项目中删除persistence.xml时,我又遇到了其他错误。 (找到NoPersistence.xml或其他东西......)

所以,我的项目找到了Persistence.xml,但不是我的Entity类:fileCassandra。

你可以看到我的persistence.xml:

   <?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">
    <!--  192.168.3.107 -->
    <persistence-unit name="cassandra_pu">
        <provider>com.impetus.kundera.KunderaPersistence</provider>     
        <class>net.***.common.db.***.FileCassandra</class>

        <properties>            
            <property name="kundera.nodes" value="localhost"/>
            <property name="kundera.port" value="9160"/>
            <property name="kundera.keyspace" value="KunderaExamples"/>
            <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>
</persistence>  

net。 .common.db。 .FileCassandra我必须替换为 * ,因为它的名字来自我的公司;)

相同的方法(包括EntityManager)在其他项目的junit中工作,当我在Tomcat中构建我的项目时,会出现此错误......

2 个答案:

答案 0 :(得分:1)

当您的类路径中有多个相同类的条目时,会发生这种情况。

让您的实体最接近加载kundera核心和客户端(HBase,Cassandra等)的相同类加载器的理想位置。

例如,如果这些kundera文件在WEB-INF / lib下,你宁愿让你的实体在应用程序下,好像kundera文件在应用程序li​​b文件夹中,更好地将你的实体捆绑在一个jar中并放置它们那里(并删除你的应用程序中的实体)。

答案 1 :(得分:0)

只有我能看到的问题是classes和persistence.xml位置。

尝试将persistence.xml放在/ WEB-INF / classes / META-INF /中,前提是您的实体定义在classes文件夹中!

-Vivek