Skip to content

Instantly share code, notes, and snippets.

Created September 17, 2012 15:38
<?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:gfe="http://www.springframework.org/schema/gemfire"
xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/gemfire http://www.springframework.org/schema/gemfire/spring-gemfire-1.1.xsd">
<gfe:cache/>
<gfe:cache-server auto-startup="true">
<gfe:subscription-config eviction-type="ENTRY" disk-store="." capacity="1000"/>
</gfe:cache-server>
<gfe:replicated-region id="test.region"/>
<gfe:transaction-manager/>
<bean id="gemfireTemplate"
class="org.springframework.data.gemfire.GemfireTemplate">
<property name="region" ref="test.region"/>
</bean>
</beans>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment