Spring 4 MVC的post提交form时中文乱码

如果你发现Spring 4 MVC的Post请请求乱码,请添加accept-charset的标签为utf-8就能解决,如下:

            <form name="user" action="add.html" method="post"
                    accept-charset="utf-8">
                Firstname: <input type="text" name="firstname"> <br>
                Lastname: <input type="text" name="lastname">   <br>
                <input type="submit" value="   Save   ">
            </form>



你可能感兴趣的:(Spring 4 MVC的post提交form时中文乱码)