A pretty basic question, and I'm embaressed that I havn't figured it out my self.
What should I do to make the strings posted on my HTML form stay in the correct encoding when I handle them in my Spring web app hosted on Google App Engine?
Prerequisites: I have a page which I have tried the following encodings for:
meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"
meta http-equiv="Content-Type" content="text/html; charset=UTF-8"
When someone posts a form on the page with for example Swedish characters åäö then I get questionmarks in my servlet code when I look at the posted string (in a debugger or in the persisted string on the deployed server). (It seems to be an escaped sequence in some way since the letter after my Swedish letter is also deleted in the string).
Should I change encoding on the page or in some way change the encoding of GAE servlet?