With Spring Boot Version 2.5.7, Quartz cant find the default datasource configured on the spring node in the application.yaml

With versions <= 2.5.6 it was working

This datasource setting is no longer propagated to Quartz automatically since SpringBoot 2.5.7

spring
  datasource:
    hikari: maximum-pool-size: 4
    url: "jdbc:postgresql://localhost:8081/postgresApplicationName=${spring.application.name}&currentSchema=${database.schema-name}"
    username: exampleUser
    password: examplePassword

Comment From: snicoll

Duplicate of #28758