Now I have a spring-boot app which uses MsSQL server. And we use flyway for migrations.
I want to add an additional profile for tests. I want to generate tables from entity classes instead of using flyway.
I tried smth to write like this in application.yaml
spring:
profiles: test
jpa:
generate-ddl: true
hibernate:
datasource:
url: jdbc:h2:mem:test_db;MODE=MSSQLServer
username: sa
password:
but flyway starts anyway
FYI, for anybody who comes here looking for this, the property name has changed for Spring Boot 2.0:
For application.properties
format:
spring.flyway.enabled=false
For application.yml
format:
spring:
flyway:
enabled: false
Update: To disable flyway in a specific profile, you can put that property in the properties file specific to that profile. For instance, if your profile is called "abc", you can put it in application-abc.properties
. Check out Spring's documentation on Profile-specific properties for more clarity on how to name the files. Generally, the format is application-{profileName}.properties
.