Spring Boot default properties encoding change?
Apparently properties loaded by Spring Boot's ConfigFileApplicationListener
are encoded in ISO 8859-1 character encoding, which is by design and according to format specification.
On the other hand, the .yaml format supports UTF-8 out of the box. A simple extension change fixes the problem for me.