解決@ResponseBody註解返回的json中文亂碼問題

注意查看  Spring-mvc.xml  頂部對應的版本是否正確html

 

<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 />web

 

親測可用spring

相關文章
相關標籤/搜索