We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
Right now we use DriverManager as a way to get the DB connection, but it is recommended to use Datasource. More information: https://stackoverflow.com/questions/15198319/why-do-we-use-a-datasource-instead-of-a-drivermanager
Describe the solution you'd like I would like to use Datasouroce since it is the best practice to interact with the db
This guide should help: https://www.baeldung.com/multitenancy-with-spring-data-jpa#bd-dynamic-datasource-routing But keep in mind this guide is written for Database per Tenant: while we use schema per tenant therefore we have to make a few adjustments
The text was updated successfully, but these errors were encountered:
peggimann
No branches or pull requests
Right now we use DriverManager as a way to get the DB connection, but it is recommended to use Datasource.
More information:
https://stackoverflow.com/questions/15198319/why-do-we-use-a-datasource-instead-of-a-drivermanager
Describe the solution you'd like
I would like to use Datasouroce since it is the best practice to interact with the db
This guide should help:
https://www.baeldung.com/multitenancy-with-spring-data-jpa#bd-dynamic-datasource-routing
But keep in mind this guide is written for Database per Tenant: while we use schema per tenant therefore we have to make a few adjustments
The text was updated successfully, but these errors were encountered: