Log failures to load PropertySources when ignoreResourceNotFound = true [SPR-15218] #19783
Labels
in: core
Issues in core modules (aop, beans, core, context, expression)
type: enhancement
A general enhancement
Milestone
Andrew Medworth opened SPR-15218 and commented
In
ConfigurationClassParser.processPropertySource()
, ifignoreResourceNotFound
is set totrue
for a given property source and that property source is not loadable (e.g. because the file does not exist), no message is currently logged by Spring at any level.This can make it extremely difficult to debug unexpected behaviour in property source resolution. For example, see the
Repro
main class in the referenced project on GitHub, which has a PropertySource referring to a non-existent property file.The ultimate output of this program is
myProp = ${mykey}
, because the config file is not found and therefore the "mykey" variable substitution does not occur.However, if the developer was expecting the config file to exist, and hence was surprised at the lack of variable substitution, the cause would be very difficult to diagnose from the application logs, because even at the highest level of logging, there is no message to indicate that Spring tried and failed to open
does-not-exist.properties
. Of course, real-world scenarios would probably be much more complex.I propose that Spring's ConfigurationClassParser should be changed to log a message at debug level when a PropertySource with ignoreResourceNotFound = true cannot be loaded for any reason.
Affects: 4.3.6, 5.0 M4
Reference URL: https://github.com/amdw/spring-logging-repro
Issue Links:
Referenced from: pull request #1313, and commits 448ea4c, d6216fb
The text was updated successfully, but these errors were encountered: