i have a spring form where i need to send some data in arabic so i set the page encoding and the content type to UTF-8 like this :
<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8" %>
...
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
when i display the data in the controller i get something like this ?¨???¦?³?±???§
i'm using spring 4 along with spring security, i don't know if this can be be the cause, but can it be the csrf added by spring security ?
thanks in advance