<bean class="org.springframework.http.converter.StringHttpMessageConverter"> <property name="supportedMediaTypes"> <list> <value>text/html;charset=UTF-8</value> <!--在消息转换器里面,添加此段代码--> <value>application/json;charset=UTF-8</value> </list> </property> </bean>
springMVC后台返回到页面的json数据,含有/"号的问题处理
原文:https://www.cnblogs.com/black-knight/p/9862322.html