Following is my property inside the spring boot application.properties file
agent.managementId=こんにちは
When I am trying to read like
@Value("${agent.managementId}")
String tempVal;
Then I am getting the garbage value like "ã“ã‚“ã«ã¡ã¯"
how can I read that value as is?
the value inside the application.properties file
agent.managementId=こんにちは
Note :- if I change the text in ASCII then it is working but I don't want to convert it into ASCII.