小编典典

找不到该类的实体元数据

tomcat

我又遇到了同样的问题…

我正在尝试使用Kundera(Cassandra
ORM)在我的Cassandra数据库中使用查询,此查询在其他项目中有效,但是当我尝试在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>

净。 .common.db。.FileCassandra我必须用 * 代替,因为它是我公司的名字;)

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


阅读 313

收藏
2020-06-16

共1个答案

小编典典

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

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

-维维克

2020-06-16