List of usage examples for org.springframework.boot.autoconfigure.orm.jpa HibernateSettings HibernateSettings
HibernateSettings
From source file:org.springframework.boot.autoconfigure.orm.jpa.HibernateJpaConfiguration.java
@Override protected Map<String, Object> getVendorProperties() { Supplier<String> defaultDdlMode = () -> this.defaultDdlAutoProvider.getDefaultDdlAuto(getDataSource()); return new LinkedHashMap<>(this.hibernateProperties.determineHibernateProperties( getProperties().getProperties(), new HibernateSettings().ddlAuto(defaultDdlMode) .hibernatePropertiesCustomizers(this.hibernatePropertiesCustomizers))); }