JDBC ドライバーの検証
環境
- Java 17
- Spring Boot 3.1.0
- aws-mysql-jdbc 1.1.7
- aws-advanced-jdbc-wrapper 2.2.2
- 接続先DBのURLを環境変数に設定する。
$ export DB_URL=hoge.ap-northeast-1.rds.amazonaws.com
$ export RO_DB_URL=hoge-ro-.ap-northeast-1.rds.amazonaws.com
- Spring Bootのアクティブプロファイルを指定して起動
# MySQL Connector/J
./gradlew clean bootRun --args='--spring.profiles.active=std'
# Amazon Web Services (AWS) JDBC Driver for MySQL
./gradlew clean bootRun --args='--spring.profiles.active=aws'
# Amazon Web Services (AWS) JDBC Driver
./gradlew clean bootRun --args='--spring.profiles.active=awswrapper'