This commit is contained in:
Stephane Nicoll
2016-04-11 16:11:51 +02:00
parent 82207ffce5
commit c38bb9657d
4 changed files with 98 additions and 98 deletions

View File

@@ -92,7 +92,7 @@ public class LiquibaseProperties {
private Map<String, String> parameters;
/**
* The file to which rollback SQL will be written when an update is performed.
* File to which rollback SQL will be written when an update is performed.
*/
private File rollbackFile;

View File

@@ -24,6 +24,7 @@ import javax.sql.DataSource;
import org.springframework.boot.autoconfigure.jdbc.EmbeddedDatabaseConnection;
import org.springframework.boot.context.properties.ConfigurationProperties;
import org.springframework.boot.context.properties.DeprecatedConfigurationProperty;
import org.springframework.boot.context.properties.NestedConfigurationProperty;
import org.springframework.orm.jpa.vendor.Database;
import org.springframework.util.StringUtils;
@@ -145,6 +146,7 @@ public class JpaProperties {
*/
private Boolean useNewIdGeneratorMappings;
@NestedConfigurationProperty
private final Naming naming = new Naming();
@Deprecated