我正在尝试将我的应用程序连接到Terracotta缓存集群,但是我无法使用已设置的配置来启动我的应用程序。我在控制台中没有收到任何错误,但是如果我进行调试,则在尝试创建CacheManager时它将失败。

我得到的错误是这个。引起原因:java.lang.ClassNotFoundException:net.sf.ehcache.config.TerracottaConfigConfiguration

我正在使用Hibernate 4.x,Spring 4.x,Terracotta BigMemory Max4.x。

您能否告诉我我做错了什么,或者在哪里可以找到最新文档?

这些是我的配置:

休眠属性:

<prop key="hibernate.cache.use_structured_entries">true</prop>
<prop key="hibernate.cache.use_second_level_cache">true</prop>
<prop key="hibernate.cache.region.factory_class">org.hibernate.cache.ehcache.EhCacheRegionFactory</prop>
<prop key="hibernate.cache.use_query_cache">true</prop>
<prop key="net.sf.ehcache.configurationResourceName">ehcache-hibernate.xml</prop>


Ehcache-hibernate.xml:

<?xml version="1.0" encoding="UTF-8"?>
<ehcache name="ehcache-hibernate"
     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
     xsi:noNamespaceSchemaLocation="ehcache.xsd">

<cache name="User" maxElementsInMemory="1000"
       maxElementsOnDisk="10000" eternal="false" timeToIdleSeconds="3600"
       timeToLiveSeconds="1200" memoryStoreEvictionPolicy="LFU">
    <terracotta />
</cache>

<defaultCache
        maxElementsInMemory="10000"
        eternal="false"
        timeToIdleSeconds="1200"
        timeToLiveSeconds="1200">
    <!--<terracotta />-->
</defaultCache>
<terracottaConfig url="localhost:9510" />




Maven相关的依赖项:

<dependency>
    <groupId>org.hibernate</groupId>
    <artifactId>hibernate-ehcache</artifactId>
    <version>4.3.10.Final</version>
</dependency>
<dependency>
    <groupId>net.sf.ehcache</groupId>
    <artifactId>ehcache-terracotta</artifactId>
    <version>2.1.1</version>
</dependency>
<dependency>
    <groupId>org.terracotta</groupId>
    <artifactId>terracotta-toolkit-1.6-runtime-ee</artifactId>
    <version>5.8.0</version>
</dependency>
<dependency>
    <groupId>org.terracotta</groupId>
    <artifactId>terracotta-toolkit-runtime-ee</artifactId>
    <version>4.1.1</version>
</dependency>


我在Windows上,并且已经启动了Terracotta服务器和管理控制台。服务器显示为活动服务器,但是没有客户端连接到该服务器。

我已尝试使用类似于我自己的环境来找到有效配置的示例,但找不到任何环境。

谢谢!

最佳答案

您在类路径中缺少ehcache-core。添加以下依赖项以使其起作用:

<dependency>
  <groupId>net.sf.ehcache</groupId>
  <artifactId>ehcache-core</artifactId>
  <version>2.1.1</version>
</dependency>

10-04 18:57