UTF-8 encoding of application.properties attributes in Spring-Boot

后端 未结 5 1810
没有蜡笔的小新
没有蜡笔的小新 2020-12-15 05:05

In my application.properties I add some custom attributes.

custom.mail.property.subject-message=This is a ä ö ü ß problem

In t

5条回答
  •  一整个雨季
    2020-12-15 05:22

    To set the UTF-8 encoding for the text in the application.properties (and any other Java properties as well as environment variables) add -Dfile.encoding=UTF-8 to java command line agrs.

提交回复
热议问题