Flyway로 다중 데이터베이스 설정 Flyway 5.0.7, 개발용 MySQL, 테스트용 H2로 두 가지 다른 데이터베이스를 설정하려고 합니다.두 데이터베이스 모두 각각의 파일로 구성하였습니다. 개발의 경우 src/메인/리소스/응용프로그램.properties. spring.datasource.url=jdbc:mysql://localhost:3306/moment spring.datasource.username=root spring.datasource.password=root flyway.locations=db/migration,db/specific/mysql 테스트의 경우, src/test/resource/application.properties spring.datasource.driver-class-n..