SGF-15
+ client integration tests
parsing works okay but a pool/server is still needed
This commit is contained in:
costin
2010-08-31 14:47:18 +03:00
parent ff1ddab2dc
commit 4848282483
2 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
<?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"
xmlns:p="http://www.springframework.org/schema/p"
xmlns:util="http://www.springframework.org/schema/util"
xsi:schemaLocation="http://www.springframework.org/schema/gemfire http://www.springframework.org/schema/gemfire/spring-gemfire.xsd
http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util.xsd">
<gfe:cache />
<gfe:client-region id="simple" />
<gfe:client-region id="empty" name="publisher" data-policy="EMPTY"/>
<gfe:client-region id="complex">
<gfe:cache-listener>
<ref bean="c-listener"/>
<bean class="org.springframework.data.gemfire.SimpleCacheListener"/>
</gfe:cache-listener>
<gfe:key-interest durable="true" result-policy="KEYS">
<bean id="key" class="java.lang.Object"/>
</gfe:key-interest>
<gfe:regex-interest pattern=".*"/>
</gfe:client-region>
<bean id="c-listener" class="org.springframework.data.gemfire.SimpleCacheListener"/>
</beans>