I'm trying to do a CRUD to two different data source (PostgreSQL and MySQL)
However, it seems even after assigning a @DataSource
to the repository class, it still uses the default one.
This is the error I got:
2023-10-27 17:54:28,443 ERROR [io.qua.hib.orm.run.sch.SchemaManagementIntegrator] (Hibernate post-boot validation thread for <default>) Failed to validate Schema: Schema-validation: missing table [cash_postgres]
I assume Quarkus is using the default data source is because cash_postgres
did not exist in the MySQL db and only in my PostgreSQL.
I've tried to follow this documentation, and other StackOverflow/Github questions/ticket but still have no clue.
This is my application.properties
quarkus.datasource.db-kind=mysql
quarkus.datasource.username=root
quarkus.datasource.jdbc.url=jdbc:mysql://localhost:3307/mysqldb
quarkus.datasource."mysqldatasource".db-kind=mysql
quarkus.datasource."mysqldatasource".username=root
quarkus.datasource."mysqldatasource".jdbc.url=jdbc:mysql://localhost:3307/mysqldb
quarkus.datasource."postgresqldatasource".db-kind=postgresql
quarkus.datasource."postgresqldatasource".username=user
quarkus.datasource."postgresqldatasource".password=password
quarkus.datasource."postgresqldatasource".jdbc.url=jdbc:postgresql://localhost:5431/postgresdb
quarkus.http.port=8080
This is my Entities:
@Entity
@Table(name = "cash_mysql")
public class CashMySQL {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
@Column(name = "amount")
private int amount;
@Column(name = "create_time")
private Date createTime;
@Column(name = "update_time")
private Date updateTime;
@Column(name = "created_by")
private String createdBy;
@Column(name = "updated_by")
private String updatedBy;
}
@Entity
@Table(name = "cash_postgres")
public class CashPostgres {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@Column(name = "id")
private int id;
@Column(name = "amount")
private int amount;
@Column(name = "create_time")
private Date createTime;
@Column(name = "update_time")
private Date updateTime;
@Column(name = "created_by")
private String createdBy;
@Column(name = "updated_by")
private String updatedBy;
}
This is my repo
@ApplicationScoped
@DataSource("mysqldatasource")
public class CashMySQLRepository implements PanacheRepository<CashMySQL> {}
@ApplicationScoped
@DataSource("postgresqldatasource")
public class CashPostgresRepository implements PanacheRepository<CashPostgres> {}
This is my resource
@Path("/benchmark")
public class MyResource {
@Inject
@DataSource("mysqldatasource")
CashMySQLRepository cashMySQLRepository;
@Inject
@DataSource("postgresqldatasource")
CashPostgresRepository cashPostgresRepository;
}
Really appreciate any help I can get
What we need to do is
Entity
classes in separate packages,Entity
to the mySql persistence unitEntity
to the postgres persistence unit.When we asusme that class
CashMySQL
lives in packagede.turing85.persistence.entity.mysql
and classCashPostgres
lives in packagede.turing85.persistence.entity.postgres
, theapplication.properties
could look like this:With a corresponding implementation for our endpoint:
and a happy path test:
we can validate the behaviour.
A full example can be found in this
github.com
repository.