zoukankan      html  css  js  c++  java
  • @ResponseBody 返回中文乱码

    第一种解决方法:在@RequestMapping注解添加produces属性

    @RequestMapping(value = "testPersonalValidtor.do",produces = "application/json;charset=utf-8")

    第二种:在配置文件中配置

    如果你的是spring3.x使用MappingJacksonHttpMessageConverter,

    如果你的是spring4.x使用MappingJackson2HttpMessageConverter。

    导入需要的jar包:jackson-annotations-2.50.jar,jackson-core-2.5.0.jar,jackson-databind-2.5.0.jar

    <mvc:annotation-driven>
    <mvc:message-converters>
    <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter" />
    <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>
    </list>
    </property>
    </bean>
    </mvc:message-converters>
    </mvc:annotation-driven>

    或者在文件中配置,但是一定要在<mvc:annotion-deriven></mvc:annotation-driven>的上面,不然不起作用:

    <bean class="org.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerAdapter" >
    <property name="messageConverters">
    <list>
    <bean class="org.springframework.http.converter.json.MappingJackson2HttpMessageConverter" />
    <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>
    </list>
    </property>
    </bean>
    </list>
    </property>
    </bean>

    每一步都是一个深刻的脚印
  • 相关阅读:
    PC端Vue后台管理系统request.js结合业务封装axios
    从零开始学 Web 之 Vue.js(五)Vue的动画
    css实现左右两个div等高
    css样式优先级计算规则
    jquery中attr和prop区别
    table文字溢出显示省略号问题
    2020-12-15
    2020-12-14
    2020-12-11
    2020-12-10
  • 原文地址:https://www.cnblogs.com/chzlh/p/9244067.html
Copyright © 2011-2022 走看看