注意查看  Spring-mvc.xml  顶部对应的版本是否正确

解决@ResponseBody注解返回的json中文乱码问题-LMLPHP

<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>
                        </list>
                    </property>
                </bean>
            </list>
        </property>
    </bean>
    <!-- 注册MVC注解驱动 -->
    <mvc:annotation-driven />

亲测可用

01-14 20:50