-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Add MultiTenantAuthenticationManagerResolver #6976
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Some thoughts...perhaps create |
We could achieve the same thing with: static <T> AuthenticationManagerResolver<HttpServletRequest> resolveByRequestConverter
(Converter<HttpServletRequest, T> requestConverter,
Converter<T, AuthenticationManager> resolver) However, I do like the idea of a concrete implementation that can hold state. I've updated the PR accordingly. |
A class with a number of handy request-based implementations of AuthenticationManagerResolver targeted at common multi-tenancy scenarios. Fixes: spring-projectsgh-6976
A class with a number of handy request-based implementations of AuthenticationManagerResolver targeted at common multi-tenancy scenarios. Fixes: spring-projectsgh-6976
Uh oh!
There was an error while loading. Please reload this page.
There ought to be a simple way to configure multi-tenancy for common use cases like by domain, by path, and by header.
Being able to do something like
might be nice.
The text was updated successfully, but these errors were encountered: