0

我正在使用 Bigmemory Max 4.0.5,因为 terracotta 将我的应用程序的缓存分配为休眠二级缓存,但在服务器启动时出现以下异常。

引起:com.tc.config.schema.setup.ConfigurationSetupException:


来自“localhost:9510”服务器的基本配置中的配置数据不遵守 Terracotta 模式:[0]:第 7 行,第 5 列:不允许属性(不允许使用通配符):在元素服务器中安全 [1]:行9,第 9 列:元素服务器 [2] 中此处预期元素“服务器”而不是“镜像组”:第 28 行,第 9 列:元素服务器 [3] 中此处预期元素“服务器”而不是“更新检查” :第 32 行,第 9 列:元素服务器中的预期元素“服务器”而不是“垃圾收集”[4]:第 37 行,第 9 列:元素服务器中的预期元素“服务器”而不是“可重新启动”[5] :第 38 行,第 9 列:元素服务器中的预期元素“服务器”而不是“客户端重新连接窗口”

我的tc-config.xml如下:-

<?xml version="1.0" encoding="UTF-8" ?>
<tc:tc-config xmlns:tc="http://www.terracotta.org/config"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://www.terracotta.org/schema/terracotta-8.xsd">

  <servers>
    <server host="localhost" name="MyServerName">
      <!-- Specify the path where the server should store its data. -->
      <data>E:\Bratton\Pocs\bigmemory-max-4.0.5\data-test</data>
       <!-- Specify the port where the server should listen for client 
       traffic. -->
       <tsa-port>9510</tsa-port>
       <jmx-port>9520</jmx-port>
       <tsa-group-port>9530</tsa-group-port>
       <!-- Enable BigMemory on the server. -->
       <offheap>
         <enabled>true</enabled>
         <maxDataSize>512m</maxDataSize>
       </offheap>
     </server>
    <!-- Add the restartable element for Fast Restartability (optional). -->
    <restartable enabled="true"/>
  </servers>
  <clients>
    <logs>logs-%i</logs>
  </clients>
</tc:tc-config>

下面是ehcache.xml:-

<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd" updateCheck="false">
     <terracottaConfig url="localhost:9510"/>
    <defaultCache
            eternal="false"
            timeToIdleSeconds="120"
            timeToLiveSeconds="120">
       <terracotta/>    

    </defaultCache>        

</ehcache>

以下是我正在使用的依赖项

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

            <dependency>
              <groupId>org.hibernate</groupId>
              <artifactId>hibernate-ehcache</artifactId>
              <version>4.2.4.Final</version>
            </dependency>

            <dependency> 
                <groupId>net.sf.ehcache</groupId> 
                <artifactId>ehcache-terracotta</artifactId> 
                <version>2.6.0</version> 
            </dependency> 

            <dependency> 
                <groupId>org.terracotta</groupId> 
                <artifactId>terracotta-toolkit-runtime-ee</artifactId>
                <version>4.0.5</version> 
            </dependency> 

我尝试了各种依赖版本的组合,但没有任何帮助。请让我知道这有什么问题。

提前致谢。

4

2 回答 2

0

hibernate-ehcache取决于ehcache-core比您指定的版本旧的版本。尝试禁用此依赖项,如下所示:

    <dependency> 
        <groupId>org.hibernate</groupId>            
        <artifactId>hibernate-ehcache</artifactId>
        <version>4.2.4.Final</version>
        <exclusions>
            <exclusion>
                <artifactId>ehcache-core</artifactId>
                <groupId>net.sf.ehcache</groupId>
            </exclusion>
        </exclusions>
    </dependency>
于 2014-09-28T00:26:23.663 回答
0

您是否尝试使用镜像组标签?有效的配置如下所示:

<?xml version="1.0" encoding="UTF-8" ?>
<tc:tc-config xmlns:tc="http://www.terracotta.org/config"
              xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
              xsi:schemaLocation="http://www.terracotta.org/schema/terracotta-8.xsd">

  <servers>
    <mirror-group group-name="tsa01">
      <server host="localhost" name="MyServerName">
        <!-- Specify the path where the server should store its data. -->
        <data>E:\Bratton\Pocs\bigmemory-max-4.0.5\data-test</data>
        <!-- Specify the port where the server should listen for client
                traffic. -->
        <tsa-port>9510</tsa-port>
        <jmx-port>9520</jmx-port>
        <tsa-group-port>9530</tsa-group-port>
        <!-- Enable BigMemory on the server. -->
        <offheap>
          <enabled>true</enabled>
          <maxDataSize>512m</maxDataSize>
        </offheap>
      </server>
    </mirror-group>
    <!-- Add the restartable element for Fast Restartability (optional). -->
    <restartable enabled="true"/>
  </servers>
  <clients>
    <logs>logs-%i</logs>
  </clients>
</tc:tc-config>
于 2014-01-03T18:22:03.820 回答