mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 00:29:01 +00:00
The auto-config requires Spring JDBC for DataSource creation from spring.flyway.url or spring.liquibase.url, checking Flyway migrations exist, etc. Without it, the application fails to start due to missing spring-jdbc classes. This commit updates the auto-config so that it backs off in the absence of spring-jdbc. Closes gh-26849