I have one stutrs project. In the JSP page user can put any language data like english/japanese/latin etc. I have put <%@page contentType="text/html;charset=UTF-8"%>
in JSP page so when the user is putting the value in the text box it is showing properly or if the data is coming from database it is showing properly in the page.
But during save the data getting corrupted(I can see it in debug mode as well in the DB). I have put request.setCharacterEncoding("UTF-8");
in the action layer but still no joy.
How to solve the problem.
Please help.