I rarely post but read stack overflow daily, however today an issue has presented itself that has me a bit stumped and I'm hoping to get some help.
Main problem: For Spanish speaking users of our application, when making a POST call the returning JSON response includes strange square characters.
Example response:
{
...,
"designation": "Ãblabla Blabllabla",
...,
"objects": [ ... ]
}
Initially my thought was that there was some encoding problem. I tried setting the @Produces annotation at the method level and at the application.properties level based on this post: Spring Boot encoding / special characters
In the pom.xml file encoding is set to UTF-8.
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
Neither of the things I've tried have done anything and I'm starting to suspect that I'm barking up the wrong tree here. I'm not really sure what other information to add at this point, please let me know if there is anything missing and I'll try to add more detail.