Drop 'spring' from 'spring.[liquibase,flyway]'

This commit is contained in:
Dave Syer
2014-05-01 19:59:39 +01:00
parent 5548b24c4c
commit 2cd7b13096
6 changed files with 37 additions and 30 deletions

View File

@@ -158,12 +158,19 @@ content into your application; rather pick only the properties that you need.
spring.jpa.hibernate.naming-strategy= # naming classname
spring.jpa.hibernate.ddl-auto= # defaults to create-drop for embedded dbs
# FLYWAY ({sc-spring-boot-autoconfigure}/flyway/FlywayProperties.{sc-ext}[FlywayProperties])
flyway.change-log=classpath:/db/changelog/db.changelog-master.yaml
flyway.contexts= # runtime contexts to use
flyway.default-schema= # default database schema to use
flyway.drop-first=false
flyway.should-run=true
# LIQUIBASE ({sc-spring-boot-autoconfigure}/liquibase/LiquibaseProperties.{sc-ext}[LiquibaseProperties])
spring.liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml
spring.liquibase.contexts= # runtime contexts to use
spring.liquibase.default-schema= # default database schema to use
spring.liquibase.drop-first=false
spring.liquibase.should-run=true
liquibase.change-log=classpath:/db/changelog/db.changelog-master.yaml
liquibase.contexts= # runtime contexts to use
liquibase.default-schema= # default database schema to use
liquibase.drop-first=false
liquibase.should-run=true
# JMX
spring.jmx.enabled=true # Expose MBeans from Spring

View File

@@ -1117,7 +1117,7 @@ To automatically run Liquibase database migrations on startup, add the
`spring-boot-starter-liquibase` to your classpath.
The master change log is by default read from `db/changelog/db.changelog-master.yaml` but
can be set using `spring.liquibase.change-log`. See
can be set using `liquibase.change-log`. See
{sc-spring-boot-autoconfigure}/liquibase/LiquibaseProperties.{sc-ext}[`LiquibaseProperties`]
for details of available settings like contexts, default schema etc.