错误
解决方案一
Controller中的注解采用如下方式:
@GetMapping(value = "/init" ,produces = "application/json;charset=utf-8")
这种方式仅对设置了的方法有效。
解决方案二
在applicationContext.xml中添加如下代码:
<!-- 解决@ResponseBody中文件乱码,必须放在<mvc:annotation-driven>之前 -->
<bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter">
<property name="messageConverters">
<list>
<bean class="org.springframework.http.converter.StringHttpMessageConverter">
<property name="supportedMediaTypes">
<list>
<value>text/plain;charset=UTF-8</value>
<value>text/html;charset=UTF-8</value>
<value>applicaiton/javascript;charset=UTF-8</value>
</list>
</property>
</bean>
</list>
</property>
</bean>
这种方式全局有效。