fixed xsd problems

This commit is contained in:
David Turanski
2013-03-12 17:19:45 -04:00
parent 7f1d84e598
commit bb9072bed1
3 changed files with 24 additions and 119 deletions

View File

@@ -20,13 +20,13 @@ import org.junit.Test;
import org.junit.runner.RunWith;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.ApplicationContext;
import org.springframework.data.gemfire.test.GemfireTestRunner;
import org.springframework.test.context.ContextConfiguration;
import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
/**
* @author Lyndon Adams
*/
@RunWith(GemfireTestRunner.class)
@RunWith(SpringJUnit4ClassRunner.class)
@ContextConfiguration("/org/springframework/data/gemfire/config/subscription-ns.xml")
public class CacheSubscriptionTest{
@Autowired ApplicationContext ctx;

View File

@@ -1,20 +1,20 @@
<?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" default-lazy-init="true">
default-lazy-init="true"
xsi:schemaLocation="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:replicated-region id="rr" >
<gfe:subscription type="ALL"/>
<gfe:replicated-region id="rr">
<gfe:subscription type="ALL"/>
</gfe:replicated-region>
<gfe:partitioned-region id="pp">
<gfe:subscription type="ALL"/>
<gfe:subscription type="CACHE_CONTENT"/>
<gfe:eviction threshold="70"/>
</gfe:partitioned-region>
<gfe:client-region id="cc">