今回は2つのデータベースともPostgreSQL9.6を使用しています。 複数データベースに接続する 1つ目のDB接続情報をprimary、もう一つのDB接続情報をsecondaryとします。 application.ymlには以下のように記述します。 spring: jpa: database: POSTGRESQL datasource: primary: driver-class-name: org.postgresql.Driver url: jdbc:postgresql://localhost:5432/mydb1 #mydb1というデータベース username: postgres password: xxxxxxxx secondary: driver-class-name: org.postgresql.Driver url: jdbc:postgresql://loca