私は同じ問題で戻ってきました...
Kundera(Cassandra ORM)を使用してCassandra DBでクエリを使用しようとしていますが、このクエリは他のプロジェクトで機能しますが、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でビルドすると、このエラーが表示されます...