2012-04-17 39 views
0

有沒有人使用spring簡單的memcached?我一直無法獲得確切的Maven依賴關係和存儲庫。 code.google頁面(http://code.google.com/p/simple-spring-memcached/)中提到的依賴關係提及其他依賴項,但它不包含Simple-spring-memcache本身的jar。spring-simple-memcache - 用於ReadThroughSingleCache的maven依賴關係

感謝您的幫助球員。

+0

您需要接受一些答案。 7個問題中你沒有接受答案。 – SamStar 2012-04-19 14:36:58

回答

1

在SSM的情況2.0.0你需要還的memcached客戶端(xmemcached或spymemcached):

<dependency> 
    <groupId>com.google.code.simple-spring-memcached</groupId> 
    <artifactId>simple-spring-memcached</artifactId> 
    <version>2.0.0</version> 
</dependency> 
<dependency> 
    <groupId>com.googlecode.xmemcached</groupId> 
    <artifactId>xmemcached</artifactId> 
    <version>1.3.5</version> 
</dependency> 

,並配置連接到本地memcached服務器:

<beans xmlns="http://www.springframework.org/schema/beans" 
    xmlns:aop="http://www.springframework.org/schema/aop" 
    xsi:schemaLocation="http://www.springframework.org/schema/beans 
      http://www.springframework.org/schema/beans/spring-beans-3.0.xsd 
      http://www.springframework.org/schema/aop 
      http://www.springframework.org/schema/aop/spring-aop-3.0.xsd"> 

    <import resource="simplesm-context.xml" /> 
    <aop:aspectj-autoproxy /> 

    <bean name="defaultMemcachedClient" class="com.google.code.ssm.CacheFactory"> 
      <property name="cacheClientFactory"> 
       <bean class="com.google.code.ssm.providers.xmemcached.MemcacheClientFactoryImpl" /> 
      </property> 
      <property name="addressProvider"> 
       <bean class="com.google.code.ssm.config.DefaultAddressProvider"> 
        <property name="address" value="127.0.0.1:11211" /> 
       </bean> 
      </property> 
      <property name="configuration"> 
       <bean class="com.google.code.ssm.providers.CacheConfiguration"> 
         <property name="consistentHashing" value="true" /> 
       </bean> 
      </property> 
    </bean> 
</beans> 
+0

謝謝ragnor。看起來你現在已經更新了頁面?感謝網頁上詳細的文檔。 – gotz 2012-04-19 02:08:13

+0

該文件仍在建設中。我會改進它。隨意在simple-spring-memcached郵件列表上提問:http://groups.google.com/group/simple-spring-memecached,您可以在其中獲得快速答案。 – ragnor 2012-04-19 05:34:45

2

試試這個:

<dependency> 
    <groupId>com.google.code.simple-spring-memcached</groupId> 
    <artifactId>simple-spring-memcached</artifactId> 
    <version>2.0.0</version> 
</dependency> 
+0

非常感謝!該頁面現在也已更新。 – gotz 2012-04-19 02:07:35