-
Notifications
You must be signed in to change notification settings - Fork 38.8k
Description
Andrew Medworth opened SPR-15218 and commented
In ConfigurationClassParser.processPropertySource(), if ignoreResourceNotFound is set to true 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:
- UnknownHostException not accepted as "resource not found" anymore [SPR-15433] #19994 UnknownHostException not accepted as "resource not found" anymore
Referenced from: pull request #1313, and commits 448ea4c, d6216fb