解决方法
<mvc:annotation-driven content-negotiation-manager="contentNegotiationManager" /> <!-- 以.html为后缀名访问,默认返回数据类型是 text/html, 所以要修改返回的数据类型 --> <bean id="contentNegotiationManager" class="org.springframework.web.accept.ContentNegotiationManagerFactoryBean"> <property name="mediaTypes"> <map> <entry key="html" value="application/json;charset=UTF-8"/> </map> </property> </bean>
参考: