|
|
|
|
@ -1282,10 +1282,9 @@ public class QueryMapper {
@@ -1282,10 +1282,9 @@ public class QueryMapper {
|
|
|
|
|
MappingContext<? extends MongoPersistentEntity<?>, MongoPersistentProperty> mappingContext) { |
|
|
|
|
|
|
|
|
|
this.pathParts = Arrays.asList(key.split("\\.")); |
|
|
|
|
this.currentPropertyRoot = pathParts.get(0); |
|
|
|
|
this.currentIndex = 0; |
|
|
|
|
this.iterator = pathParts.iterator(); |
|
|
|
|
this.iterator.next(); |
|
|
|
|
this.currentPropertyRoot = iterator.next(); |
|
|
|
|
this.currentIndex = 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
@ -1297,6 +1296,7 @@ public class QueryMapper {
@@ -1297,6 +1296,7 @@ public class QueryMapper {
|
|
|
|
|
protected String mapPropertyName(MongoPersistentProperty property) { |
|
|
|
|
|
|
|
|
|
StringBuilder mappedName = new StringBuilder(PropertyToFieldNameConverter.INSTANCE.convert(property)); |
|
|
|
|
|
|
|
|
|
boolean inspect = iterator.hasNext(); |
|
|
|
|
|
|
|
|
|
while (inspect) { |
|
|
|
|
|