yunfei wang
汪云飞's blog

汪云飞's blog

Follow
home关于我
Tag

multitenant

#multitenant

More content

Read more stories on Hashnode


Articles with this tag

Spring Boot下如何实现数据库的多租户

Oct 16, 20224 min read 23 views

在我们常规开发的SaaS平台中,我们有个很常用的需求是通过多租户将不同用户之间的数据和资源隔离开。 通常情况下,多租户有三种形式: 1、分区(Partitioned)数据:不同租户的数据都在一张表里,通过一个值(tenantId)来区分不同的租户。 2、分结构(Schema):不同的租户数据放置在相...

Spring Boot下如何实现数据库的多租户