mirror of
https://github.com/spring-projects/spring-boot.git
synced 2026-09-22 17:35:22 +00:00
In the brackets we can now specify the encoding of the file instead of only the file extension: spring.config.import=classpath:import.properties[encoding=utf-8] The old format spring.config.import=classpath:import[.properties] is still supported and is a shorthand for: spring.config.import=classpath:import[extension=.properties] Attributes can be combined, too: spring.config.import=classpath:import[extension=.properties][encoding=utf-8] Closes gh-28663