Browse Source

Fix binding of spring.mongodb.representation.uuid

See gh-47654

Signed-off-by: Johnny Lim <izeye@naver.com>
pull/47665/head
Johnny Lim 2 months ago committed by Stéphane Nicoll
parent
commit
a10e4baa9a
  1. 4
      module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoProperties.java

4
module/spring-boot-mongodb/src/main/java/org/springframework/boot/mongodb/autoconfigure/MongoProperties.java

@ -218,8 +218,8 @@ public class MongoProperties { @@ -218,8 +218,8 @@ public class MongoProperties {
return this.uuid;
}
public void setUuidRepresentation(UuidRepresentation uuidRepresentation) {
this.uuid = uuidRepresentation;
public void setUuid(UuidRepresentation uuid) {
this.uuid = uuid;
}
}

Loading…
Cancel
Save