Browse Source

Quick fix for missing createIsNewStrategy(…).

Solid refactoring will follow up with implementation of DATACMNS-17.
pull/1/head
Oliver Gierke 15 years ago
parent
commit
86cc313d80
  1. 1
      spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/repository/SimpleMongoRepository.java

1
spring-data-mongodb/src/main/java/org/springframework/data/document/mongodb/repository/SimpleMongoRepository.java

@ -61,6 +61,7 @@ public class SimpleMongoRepository<T, ID extends Serializable> extends
Assert.notNull(template); Assert.notNull(template);
this.template = template; this.template = template;
createIsNewStrategy(domainClass);
} }

Loading…
Cancel
Save