Quarkus 设置默认数据库

Quarkus set default database

我的 quarkus 应用程序中有 2 个命名数据源,我们称它为 A 和 B:

因此每次应用程序启动时我都会收到此通知:

WARN : Unable to determine a database type for default datasource

有没有办法设置这个默认值?我无法重命名或删除数据源中的名称

https://quarkus.io/guides/datasource#multiple-datasources 中所述,您应该使用其中之一作为默认数据源 - 即没有命名。

类似于:

# this one is the default datasource as it is not named
quarkus.datasource.db-kind=oracle 
quarkus.datasource.B.db-kind=oracle