Building SaaS style multi-tenant web app with Spring Boot 2 and Spring Security 5 - Part 1

1 · Sunit Katkar · April 11, 2018, 4:29 p.m.
Software as a Service or SaaS has been around for quite some time now.  But most of the time, developers are building single tenant applications as per requirements.  These applications have just one database and one web server at their core.Purpose of this blog postI wanted a solution where multi-tenancy is achieved by having a database per tenant and all user information (username, password, etc) for authentication and authorization stored in a user table in the respective tenant databases. It...