Merge pull request #3936 from eddumelendez/gh-3935
* pr/3936: Polish contribution Expose actuator endpoints for flyway and liquibasepull/3636/merge
commit
93700d00de
@ -0,0 +1,9 @@
|
||||
== Spring Boot Flyway Sample
|
||||
|
||||
This sample demonstrates the flyway auto-configuration support.
|
||||
|
||||
You can look at `http//localhost:8080/flyway` to review the list of scripts.
|
||||
|
||||
This sample also enables the H2 console (at `http//localhost:8080/h2-console`)
|
||||
so that you can review the state of the database (the default jdbc url is
|
||||
`jdbc:h2:mem:testdb`).
|
@ -1 +1,3 @@
|
||||
spring.jpa.hibernate.ddl-auto: validate
|
||||
spring.jpa.hibernate.ddl-auto=validate
|
||||
|
||||
spring.h2.console.enabled=true
|
@ -0,0 +1,9 @@
|
||||
== Spring Boot Liquibase Sample
|
||||
|
||||
This sample demonstrates the liquibase auto-configuration support.
|
||||
|
||||
You can look at `http//localhost:8080/liquibase` to review the list of scripts.
|
||||
|
||||
This sample also enables the H2 console (at `http//localhost:8080/h2-console`)
|
||||
so that you can review the state of the database (the default jdbc url is
|
||||
`jdbc:h2:mem:testdb`).
|
@ -1 +1,3 @@
|
||||
spring.jpa.hibernate.ddl-auto: none
|
||||
spring.jpa.hibernate.ddl-auto=none
|
||||
|
||||
spring.h2.console.enabled=true
|
||||
|
Loading…
Reference in New Issue