...
|
...
|
@@ -22,13 +22,16 @@ |
|
|
<list>
|
|
|
<bean class="org.springframework.http.converter.ByteArrayHttpMessageConverter"/>
|
|
|
<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>
|
|
|
<value>text/xml;charset=GBK</value>
|
|
|
</list>
|
|
|
</property>
|
|
|
<property name="supportedMediaTypes">
|
|
|
<list>
|
|
|
<value>text/plain;charset=UTF-8</value>
|
|
|
<value>text/plain;charset=utf-8</value>
|
|
|
<value>text/html;charset=UTF-8</value>
|
|
|
<value>text/html;charset=utf-8</value>
|
|
|
<value>text/xml;charset=GBK</value>
|
|
|
<value>text/xml;charset=gbk</value>
|
|
|
</list>
|
|
|
</property>
|
|
|
</bean>
|
|
|
<bean class="org.springframework.http.converter.ResourceHttpMessageConverter"/>
|
|
|
<bean class="org.springframework.http.converter.FormHttpMessageConverter"/>
|
...
|
...
|
|