mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-17 12:09:16 +00:00
Previously, the post-processing of HikariDataSource to apply custom connection details would trigger an NPE in Hikari if those details supplied a null driverClassName. This commit avoids the problem by only setting the driverClassName when it is non-null. Closes gh-44997