项目场景:CRM项目开发(SSM版)
提示:这里简述项目相关背景:
参照动力节点最新版SSM项目,并把里面的jsp更改为h5+jq+ajax+json
这年头,真用不转jsp
问题描述
提示:这里描述项目中遇到的问题:
通过post请求传json对象到前台,中文变???
原因分析:
估摸是编码问题:
; 俺用了没效果,也清空了缓存,气晕(doge
另一种是在配置文件里加:
<mvc:annotation-driven>
<mvc:message-converters register-defaults="true">
<bean id="stringHttpMessageConverter" class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes" value="application/json;charset=UTF-8"/>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>