我回来了同样的问题......
我正在尝试在我的 Cassandra DB 和 Kundera(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,但没有找到我的实体类: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中构建我的项目时,出现这个错误......