Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save HDBandit/3672e2d33dd4f92c52603d45d29b09f4 to your computer and use it in GitHub Desktop.
Save HDBandit/3672e2d33dd4f92c52603d45d29b09f4 to your computer and use it in GitHub Desktop.
@Component
public class CurrentTenantIdentifierResolverImpl implements CurrentTenantIdentifierResolver {
@Override
public String resolveCurrentTenantIdentifier() {
return RequestContextHolderUtils.getCurrentTenantIdentifier();
}
@Override
public boolean validateExistingCurrentSessions() {
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment