0

私のプロジェクトは GWT(2.4) に基づいており、私の目的は ReqyestFactory (JPA、Datanucleus、Postgresql) を実装することです。私が抱えている最後の問題は、レベル 2 キャッシュに関するものです。EHcache を使用したいのですが、EMF を作成すると、次のエラーが発生しました。

Level 2 Cache "ehcache" is registered to use class "org.datanucleus.cache.ehcache.EhcacheLevel2Cache" yet this is not found. Please check your CLASSPATH and plugin specification.

/war/WEB-INF/lib には次のものがあります。

datanucleus-api-jpa-3.2.0-m2.jar
datanucleus-cache-3.1.1.jar
datanucleus-core-3.2.0-m2.jar
datanucleus-rdbms-3.2.0-m2.jar
ehcache-core-2.2.0.jar
geronimo-jpa_2.0_spec-1.1.jar
geronimo-jta_1.1_spec-1.1.jar
gwt-servlet-deps.jar
gwt-servlet.jar
hibernate-validator-4.3.1.Final.jar
jboss-logging-3.1.0.GA.jar
jdo-api-3.0.1.jar
log4j-1.2.17.jar
postgresql-9.2-1002.jdbc4.jar
requestfactory-apt.jar
requestfactory-client+src.jar
requestfactory-server+src.jar
validation-api-1.0.0.GA.jar
validation-api-1.0.0.GA-sources.jar

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">

<persistence-unit name="DBStorage">
    <provider>org.datanucleus.api.jpa.PersistenceProviderImpl</provider>
    <class>com.test.domain.Myobj</class>
    <exclude-unlisted-classes/>
    <properties>
        <property name="datanucleus.ConnectionDriverName" value="org.postgresql.Driver" />
        <property name="datanucleus.ConnectionURL" value="jdbc:postgresql://localhost:5432/test" />
        <property name="datanucleus.ConnectionUserName" value="test" />
        <property name="datanucleus.ConnectionPassword" value="123" />
        <property name="datanucleus.autoCreateTables" value="true" />
        <property name="datanucleus.identifier.case" value="LowerCase" />
        <property name="datanucleus.jmxType" value="default" />

        <property name="datanucleus.cache.level2.type" value="ehcache" />
        <property name="datanucleus.cache.level2.cacheName" value="TestEHcache" />
        <!--  property name="datanucleus.cache.level2.configurationFile" value="ehcache.xml" / -->

    </properties>
</persistence-unit>

私が逃したものは何ですか?私の問題はどこですか?

4

1 に答える 1

0

追加して問題を解決しました:

slf4j-api-1.5.6.jar
slf4j-log4j12-1.5.6.jar

今ではうまく機能します。

于 2013-01-30T15:55:04.460 に答える