I am developing a web in Spring MVC, I have a Form which I want to send Utf-8 characters. I did config and the Form work perfectly with method POST, but when I try with method GET, my Utf-8 characters have something wrong, my form sends 'â' and this is what my controller got : 'â'
I already have encoding-filter in my web.xml and that line in my Jsp:
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
So, please let me know what's wrong here.