[ad_1]
my application is setting a simple data source via properties
spring.datasource.username=${database.username}
spring.datasource.password=${database.password}
spring.datasource.url=jdbc:mysql://${database.host}/databasename
which gets picked up by hikari autoconfig.
But then fail to be seen be quartz autoconfig when using LocalDataSourceJobStore
What is the correct way to point quartz to the hikariCP pool?
[ad_2]