使用spingmvc,在JS里面通過ajax發(fā)送請(qǐng)求,并返回json格式的數(shù)據(jù),從數(shù)據(jù)庫(kù)拿出來是正確的中文格式,展示在頁(yè)面上就是錯(cuò)誤的??,研究了一下,有幾種解決辦法。
我使用的是sping-web-3.2.2,jar
方法一:
在@RequestMapping里面加入produces = "text/html;charset=UTF-8"
@RequestMapping(value = "/configrole", method = RequestMethod.GET, produces = "text/html;charset=UTF-8")
public @ResponseBody String configrole() {
......
}
方法二:
因?yàn)樵赟tringHttpMessageConverter里面默認(rèn)設(shè)置了字符集是ISO-8859-1
所以拿到源代碼,修改成UTF-8并打包到spring-web-3.2.2.jar
public class StringHttpMessageConverter extends AbstractHttpMessageConverterString>
{
public static final Charset DEFAULT_CHARSET = Charset.forName("UTF-8");
..........
}
方法三:
修改org.springframework.http.MediaType它的構(gòu)造方法的參數(shù),并在applicationContext-mvc.xml 加入配置
public MediaType(String type, String subtype, Charset charset) {
super(type, subtype, charset);
}
Xml代碼
bean id="stringHttpMessageConverter"
class="org.springframework.http.converter.StringHttpMessageConverter">
property name="supportedMediaTypes">
list>
bean class="org.springframework.http.MediaType">
constructor-arg value="text" />
constructor-arg value="plain" />
constructor-arg value="UTF-8" />
/bean>
/list>
/property>
/bean>
方法4
org.springframework.http.converter.StringHttpMessageConverter類是處理請(qǐng)求或相應(yīng)字符串的類,并且默認(rèn)字符集為ISO-8859-1,所以在當(dāng)返回json中有中文時(shí)會(huì)出現(xiàn)亂碼。
StringHttpMessageConverter的父類里有個(gè)ListMediaType> supportedMediaTypes屬性,用來存放StringHttpMessageConverter支持需特殊處理的MediaType類型,如果需處理的MediaType類型不在supportedMediaTypes列表中,則采用默認(rèn)字符集。
解決辦法,只需在配置文件中加入如下代碼:
mvc:annotation-driven>
mvc:message-converters>
bean class="org.springframework.http.converter.StringHttpMessageConverter">
property name="supportedMediaTypes">
list>
value>application/json;charset=UTF-8/value>
/list>
/property>
/bean>
/mvc:message-converters>
/mvc:annotation-driven>
如果需要處理其他 MediaType 類型,可在list標(biāo)簽中加入其他value標(biāo)簽
關(guān)于springmvc 發(fā)送ajax出現(xiàn)中文亂碼問題小編就給大家介紹到這里,希望對(duì)大家有所幫助!
您可能感興趣的文章:- springMVC向Controller傳值出現(xiàn)中文亂碼的解決方案
- 解決SpringMVC、tomcat、Intellij idea、ajax中文亂碼問題
- SpringMVC post請(qǐng)求中文亂碼問題解決
- SpringMvc后臺(tái)接收json數(shù)據(jù)中文亂碼問題詳解
- 解決SpringMVC Controller 接收頁(yè)面?zhèn)鬟f的中文參數(shù)出現(xiàn)亂碼的問題
- 解決SpringMvc后臺(tái)接收json數(shù)據(jù)中文亂碼問題的幾種方法
- SpringMVC中解決@ResponseBody注解返回中文亂碼問題
- 解決springmvc+mybatis+mysql中文亂碼問題
- SpringMVC 中文亂碼的解決方案