SGF-588 - Reorganize and repackage additional classes in the SDG API.

This commit is contained in:
John Blum
2017-01-20 22:32:56 -08:00
parent 3fb3e6c5df
commit 2dbc60854b
29 changed files with 302 additions and 230 deletions

View File

@@ -17,10 +17,10 @@
<bean id="cache" class="org.springframework.data.gemfire.CacheFactoryBean">
<property name="properties" ref="gemfireProperties"/>
</bean>
<bean id="transactionManager" class="org.springframework.data.gemfire.GemfireTransactionManager" p:cache-ref="cache"/>
<bean id="transactionManager" class="org.springframework.data.gemfire.transaction.GemfireTransactionManager" p:cache-ref="cache"/>
<bean id="rollback-region" class="org.springframework.data.gemfire.LocalRegionFactoryBean" p:name="r-region" p:cache-ref="cache" p:close="false"/>
<bean id="commit-region" class="org.springframework.data.gemfire.LocalRegionFactoryBean" p:name="c-region" p:cache-ref="cache" p:close="false"/>
</beans>

View File

@@ -26,7 +26,7 @@
<!-- gfe-data:json-region-autoproxy replaces... -->
<!--
<aop:aspectj-autoproxy/>
<bean class="org.springframework.data.gemfire.support.JSONRegionAdvice"/>
<bean class="org.springframework.data.gemfire.serialization.json.JSONRegionAdvice"/>
-->
<bean class="org.springframework.data.gemfire.GemfireTemplate" p:region-ref="jsonRegion"/>