
de.simple-spring-memcached.simple-spring-memcached.3.6.0.source-code.simplesm-context.xml Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of simple-spring-memcached Show documentation
Show all versions of simple-spring-memcached Show documentation
Enables memcached caching in Spring beans via annotations
<?xml version="1.0" encoding="UTF-8"?> <beans xmlns="http://www.springframework.org/schema/beans" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd"> <!-- mode: ${mode} --> <!--<aop:aspectj-autoproxy /> --> <context:component-scan base-package="com.google.code.ssm" /> <bean id="cacheBase" class="com.google.code.ssm.aop.CacheBase" /> <bean id="readThroughSingleCache" class="com.google.code.ssm.aop.ReadThroughSingleCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="readThroughMultiCache" class="com.google.code.ssm.aop.ReadThroughMultiCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="readThroughAssignCache" class="com.google.code.ssm.aop.ReadThroughAssignCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="updateSingleCache" class="com.google.code.ssm.aop.UpdateSingleCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="updateMultiCache" class="com.google.code.ssm.aop.UpdateMultiCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="updateAssignCache" class="com.google.code.ssm.aop.UpdateAssignCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="invalidateSingleCache" class="com.google.code.ssm.aop.InvalidateSingleCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="invalidateMultiCache" class="com.google.code.ssm.aop.InvalidateMultiCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="invalidateAssignCache" class="com.google.code.ssm.aop.InvalidateAssignCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="incrementCounterInCache" class="com.google.code.ssm.aop.counter.IncrementCounterInCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="decrementCounterInCache" class="com.google.code.ssm.aop.counter.DecrementCounterInCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="readCounterFromCache" class="com.google.code.ssm.aop.counter.ReadCounterFromCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> <bean id="updateCounterInCache" class="com.google.code.ssm.aop.counter.UpdateCounterInCacheAdvice"> <property name="cacheBase" ref="cacheBase" /> </bean> </beans>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy