All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.simple-spring-memcached.simple-spring-memcached.3.6.0.source-code.simplesm-context.xml Maven / Gradle / Ivy

There is a newer version: 4.1.3
Show newest version
<?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