Springboot + Spring 多个数据库中的相同实体数据

Springboot + Spring data same entity in multiple databases

我在多个数据库中有一个 table "config"(针对国家 "uk"、"pl"、...),我想加载这个 table 对于每个具有 Springboot 和 Spring 数据的数据库。因此,在应用程序开始时,我想将配置 tables 从每个数据库加载到一个集合中。

我研究过使用 AbstractRoutingDatasource,但我觉得它并不理想。

您会推荐哪种方法?

我在我的代码中使用了以下示例,其中有一个数据库声明为主要数据库。 link or link2 还有第二个很容易理解。