+ fixed incorrect parsing of pdx-serializer attribute

This commit is contained in:
Costin Leau
2011-12-19 19:12:11 +02:00
parent defd208be6
commit e2690a6bc3
2 changed files with 8 additions and 1 deletions

View File

@@ -2,6 +2,13 @@ SPRING DATA GEMFIRE CHANGELOG
=============================
http://www.springsource.org/spring-gemfire
Changes in version 1.1.0.RELEASE (2011-12-14)
---------------------------------------------
Package org.springframework.data.gemfire
* Fixed incorrect parsing of pdx-serializer (from value to reference)
Changes in version 1.1.0.RELEASE (2011-12-14)
---------------------------------------------

View File

@@ -43,7 +43,7 @@ class CacheParser extends AbstractSingleBeanDefinitionParser {
ParsingUtils.setPropertyValue(element, builder, "cache-xml-location", "cacheXml");
ParsingUtils.setPropertyReference(element, builder, "properties-ref", "properties");
ParsingUtils.setPropertyValue(element, builder, "pdx-serializer", "pdxSerializer");
ParsingUtils.setPropertyReference(element, builder, "pdx-serializer", "pdxSerializer");
ParsingUtils.setPropertyValue(element, builder, "pdx-disk-store", "pdxDiskStore");
ParsingUtils.setPropertyValue(element, builder, "pdx-persistent", "pdxPersistent");
ParsingUtils.setPropertyValue(element, builder, "pdx-read-serialized", "pdxReadSerialized");