From 303b812363e25e38b65fcbc3725ae481f950ad81 Mon Sep 17 00:00:00 2001 From: Stephane Nicoll Date: Sun, 19 Nov 2017 13:14:12 +0100 Subject: [PATCH] Properly document default for useNewIdGeneratorMappings Closes gh-11064 --- .../boot/autoconfigure/orm/jpa/JpaProperties.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java index 194e3a0413..96eaef0c35 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/orm/jpa/JpaProperties.java @@ -178,7 +178,7 @@ public class JpaProperties { /** * Use Hibernate's newer IdentifierGenerator for AUTO, TABLE and SEQUENCE. This is * actually a shortcut for the "hibernate.id.new_generator_mappings" property. - * When not specified will default to "false" for backwards compatibility. + * When not specified will default to "true". */ private Boolean useNewIdGeneratorMappings;