每个租户的springboot模式 如所建议的,使用SpringBoot和Hibernate实现多租户(每个租户单池模式)的种子项目。 该项目假定可以访问专用的MySql DB(可以在application.properties中进行配置),该数据库具有一个名为default_schema的默认架构,以及至少一个具有所选租户名称的其他架构。 缺省模式具有一个名为user_tenant_relation表,并具有以下结构: CREATE TABLE `user_tenant_relation` ( `id` int(11) NOT NULL AUTO_INCREMENT, `use