Eclipse에서 Flyway 추가, 설정, 실행

Eclipse 프로젝트에 Flyway 추가, 설정, 실행까지의 순서



이번에는 maven 프로젝트에서 flyway 추가 등을 설명

추가 절차



pom.xml에 Flyway dependency 추가

    <dependency>
        <groupId>org.flywaydb</groupId>
        <artifactId>flyway-core</artifactId>
    </dependency>

연결 설정



pom.xml에

project > build > plugins 안에 plugin 추가

        <plugin>
            <groupId>org.flywaydb</groupId>
            <artifactId>flyway-maven-plugin</artifactId>
            <configuration>
                <user>user<user>
                <password>password</password>
                <url>jdbc:mysql://localhost:3306/databaseName?serverTimezone=UTC</url>
                <schemas>
                    <schema>schemaName</schema>
                </schemas>
            </configuration>
        </plugin>

실행



프로젝트의 루트 폴더 안에 "shift + MR"(shift + 오른쪽 클릭)에서 "powershell ..."을 클릭



PowerShell을 연 후 다음 코드를 실행

./mvnw clean flyway:migrate

좋은 웹페이지 즐겨찾기