SGF-637 - Improve IndexFactoryBean's resilience and options for handling GemFire IndexExistsExceptions and IndexNameConflictExceptions.

Related JIRA: https://jira.spring.io/browse/DATAGEODE-14
This commit is contained in:
John Blum
2017-06-22 16:21:11 -07:00
parent 8e2689858b
commit 0db66018eb
19 changed files with 2528 additions and 917 deletions

View File

@@ -30,9 +30,12 @@
<gfe:replicated-region id="IndexedRegion" persistent="false"/>
<gfe:index id="simple" expression="status" from="/IndexedRegion" type="functional"/>
<gfe:index id="basic" expression="status" from="/IndexedRegion" type="functional"/>
<gfe:index id="complex" name="complex-index" expression="tsi.name" from="/IndexedRegion tsi"
imports="import java.util" type="${index.complex.type}"/>
<gfe:index id="index-with-ignore-and-override" expression="id" from="/IndexedRegion"
ignore-if-exists="true" override="true" type="PRIMARY_KEY"/>
</beans>