Commit 0ab7c25d authored by Madhura Bhave's avatar Madhura Bhave

Revert "Change default for new_generator_mappings to true"

This reverts commit 735dbc45.
parent 20f201b5
...@@ -202,7 +202,7 @@ public class JpaProperties { ...@@ -202,7 +202,7 @@ public class JpaProperties {
this.useNewIdGeneratorMappings.toString()); this.useNewIdGeneratorMappings.toString());
} }
else if (!result.containsKey(USE_NEW_ID_GENERATOR_MAPPINGS)) { else if (!result.containsKey(USE_NEW_ID_GENERATOR_MAPPINGS)) {
result.put(USE_NEW_ID_GENERATOR_MAPPINGS, "true"); result.put(USE_NEW_ID_GENERATOR_MAPPINGS, "false");
} }
} }
......
...@@ -108,17 +108,17 @@ public class JpaPropertiesTests { ...@@ -108,17 +108,17 @@ public class JpaPropertiesTests {
Map<String, String> hibernateProperties = properties Map<String, String> hibernateProperties = properties
.getHibernateProperties(mockStandaloneDataSource()); .getHibernateProperties(mockStandaloneDataSource());
assertThat(hibernateProperties) assertThat(hibernateProperties)
.containsEntry(AvailableSettings.USE_NEW_ID_GENERATOR_MAPPINGS, "true"); .containsEntry(AvailableSettings.USE_NEW_ID_GENERATOR_MAPPINGS, "false");
} }
@Test @Test
public void useNewIdGeneratorMappingsFalse() throws Exception { public void useNewIdGeneratorMappingsTrue() throws Exception {
JpaProperties properties = load( JpaProperties properties = load(
"spring.jpa.hibernate.use-new-id-generator-mappings:false"); "spring.jpa.hibernate.use-new-id-generator-mappings:true");
Map<String, String> hibernateProperties = properties Map<String, String> hibernateProperties = properties
.getHibernateProperties(mockStandaloneDataSource()); .getHibernateProperties(mockStandaloneDataSource());
assertThat(hibernateProperties) assertThat(hibernateProperties)
.containsEntry(AvailableSettings.USE_NEW_ID_GENERATOR_MAPPINGS, "false"); .containsEntry(AvailableSettings.USE_NEW_ID_GENERATOR_MAPPINGS, "true");
} }
@Test @Test
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment