We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the DbSchedulerAutoConfiguration selects the primary DataSource bean by default, which may not always be the desired behavior.
DbSchedulerAutoConfiguration
DataSource
Although it’s possible to override the default Scheduler bean, this approach can be somewhat cumbersome.
Scheduler
An alternative solution could be to either update the DbSchedulerCustomizer to include a datasource method or implement a custom DataSourceSupplier.
DbSchedulerCustomizer
DataSourceSupplier
What are your thoughts on these approaches?
Two different implementations; #627 #628
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Currently, the
DbSchedulerAutoConfiguration
selects the primaryDataSource
bean by default, which may not always be the desired behavior.Although it’s possible to override the default
Scheduler
bean, this approach can be somewhat cumbersome.An alternative solution could be to either update the
DbSchedulerCustomizer
to include a datasource method or implement a customDataSourceSupplier
.What are your thoughts on these approaches?
Two different implementations;
#627
#628
The text was updated successfully, but these errors were encountered: