<!-- 注册消息转化器 -->
<mvc:message-converters register-defaults="true">
<!-- StringHttpMessageConverter编码为UTF-8,防止乱码 -->
<bean class="">
<constructor-arg value="UTF-8" />
<property name="supportedMediaTypes">
<list>
<bean class="">
<constructor-arg index="0" value="text" />
<constructor-arg index="1" value="plain" />
<constructor-arg index="2" value="UTF-8" />
</bean>
<bean class="">
<constructor-arg index="0" value="*" />
<constructor-arg index="1" value="*" />
<constructor-arg index="2" value="UTF-8" />
</bean>
</list>
</property>
</bean>
<!-- 避免IE执行AJAX时,返回JSON出现下载文件 -->
<bean
class=".FastJsonHttpMessageConverter4">
<property name="supportedMediaTypes">
<list>
<value>application/json;charset=UTF-8</value>
</list>
</property>
<!-- Fastjson序列化配置,格式化时间等 -->
<property name="fastJsonConfig">
<bean class="">
<property name="serializerFeatures">
<value>
WriteDateUseDateFormat,
WriteNullStringAsEmpty
</value>
</property>
</bean>
</property>
</bean>
</mvc:message-converters>
</mvc:annotation-driven>