ajax请求json字符串springMVC返回中文乱码解决办法

  • Post author:
  • Post category:其他


方法一:

在@RequestMapping(value=”/ValidMobile”,

produces = “text/html;charset=UTF-8”

)中,加上

produces = “text/html;charset=UTF-8″。

    @RequestMapping(value="/ValidMobile",produces = "text/html;charset=UTF-8")
	@ResponseBody
	public String validMobile(@RequestBody String param) {
		User user = new Gson().fromJson(param, User.class);
		ResponseBean rb = new ResponseBean;
		rb.setResultMsg("中文乱码");        
		return new Gson().toJson(rb);
	}

方法二(推荐):

在spring-servlet.xml配置文件中加入

<!-- 注解驱动 -->
    <mvc:annotation-driven>
        <!-- 指定http返回编码格式 -->
        <mvc:message-converters>
            <bean class="org.springframework.http.converter.StringHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        <value>text/html;charset=UTF-8</value>
                        <value>application/json;charset=UTF-8</value>
                        <value>*/*;charset=UTF-8</value>
                    </list>
                </property>
            </bean>
        </mvc:message-converters>
    </mvc:annotation-driven>



版权声明:本文为kuaile966原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。