<property class="org.frameworkset.http.converter.StringHttpMessageConverter" f:responseCharset="UTF-8"/>
<property class="org.frameworkset.http.converter.StringHttpMessageConverter" f:responseCharset="GBK"/>
具体使用何种字符集取决于项目中采用的字符集。
另外一种解决办法就是通过返回参数注解ResponseBody的charset 属性单独对请求方法的响应字符串进行编码,例如:
public @ResponseBody(charset = "UTF-8") String sayHelloEnum(@RequestParam(name = "sex") SexType type)
bboss mvc基础配置请参考文档:
http://www.jb51.cc/article/p-qwxsejuy-bqx.html 原文链接:https://www.f2er.com/ajax/166118.html