How do I properly receive UTF-8 characters in JBoss 7?
15:48 01 Dec 2016

I’m using JBoss 7.1.3. Currently, when I submit a request to the server with a special character, for example

Café

it is received by the server as

Café

The only piece of advice I found online for correcting this was to add these sysmte properties to $JBOSS_HOME/standalone/configuration/standalone.xml …


    

However, even after restarting my server my special characters are still being received incorrectly on the server side. What else can I do to properly interpret the characters?

encoding utf-8 jboss request jboss7.x