Answer the question
In order to leave comments, you need to log in
Spring Boot Actuator: how to enable Cyrillic?
In pom.xml we include:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
</dependency>
management.info.env.enabled=true
info.app.encoding = @[email protected]
info.name = Приложение Spring Data Rest
info.description = Описание приложения
info.author = Автор приложения
{
"app": {
"encoding": "UTF-8",
},
"name": "ÐÑиложение Spring Data Rest",
"description": "ÐпиÑание пÑиложениÑ",
"author": "ÐвÑÐ¾Ñ Ð¿ÑиложениÑ"
}
Answer the question
In order to leave comments, you need to log in
In application.properties we write:
Default is none, using the java.util.Properties default encoding: ISO-8859-1.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question