mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-23 09:49:01 +00:00
Previously, if a user specifies a path to a schema or data DDL that does not exist, the application will start up fine and the missing DDL would not be reported. This commit validates that user-defined resources actually exist and throw a new `ResourceNotFoundException` if they don't. Closes gh-7088