|
|
|
|
@ -25,7 +25,6 @@ import org.apache.commons.logging.Log;
@@ -25,7 +25,6 @@ import org.apache.commons.logging.Log;
|
|
|
|
|
import org.apache.commons.logging.LogFactory; |
|
|
|
|
import org.springframework.boot.autoconfigure.jdbc.EmbeddedDatabaseConnection; |
|
|
|
|
import org.springframework.boot.context.properties.ConfigurationProperties; |
|
|
|
|
import org.springframework.boot.orm.jpa.SpringNamingStrategy; |
|
|
|
|
import org.springframework.orm.jpa.vendor.Database; |
|
|
|
|
import org.springframework.util.StringUtils; |
|
|
|
|
|
|
|
|
|
@ -151,8 +150,7 @@ public class JpaProperties {
@@ -151,8 +150,7 @@ public class JpaProperties {
|
|
|
|
|
result.put("hibernate.ejb.naming_strategy", this.namingStrategy.getName()); |
|
|
|
|
} |
|
|
|
|
else if (this.namingStrategy == null) { |
|
|
|
|
result.put("hibernate.ejb.naming_strategy", |
|
|
|
|
DEFAULT_NAMING_STRATEGY); |
|
|
|
|
result.put("hibernate.ejb.naming_strategy", DEFAULT_NAMING_STRATEGY); |
|
|
|
|
} |
|
|
|
|
String ddlAuto = getOrDeduceDdlAuto(existing, dataSource); |
|
|
|
|
if (StringUtils.hasText(ddlAuto) && !"none".equals(ddlAuto)) { |
|
|
|
|
|