This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6.5k
FastJsonJsonView_EN
铁锚 edited this page Aug 17, 2016
·
2 revisions
Spring has not recommend, see FastJsonHttpMessageConverter.
FastJsonJsonView is a Spring MVC AbstractView implementor.
It can be use FastJson in Spring MVC Controller for data Serialize and Deserialize.
FastJsonConfig Configuration
<bean id="fastJsonConfig" class="com.alibaba.fastjson.support.config.FastJsonConfig">
<!-- Default charset -->
<property name="charset" value="UTF-8" />
<!-- Default dateFormat -->
<property name="dateFormat" value="yyyy-MM-dd HH:mm:ss" />
<!-- Feature -->
<property name="features">
<list>
<value>Your feature</value>
</list>
</property>
<!-- SerializerFeature -->
<property name="serializerFeatures">
<list>
<value>Your serializer feature</value>
</list>
</property>
<!-- Global SerializeFilter -->
<property name="serializeFilters">
<list>
<ref bean="Your serializer filter"/>
</list>
</property>
<!-- Class Level SerializeFilter -->
<property name="classSerializeFilters">
<map>
<entry key="Your filter class" value-ref="Your serializer filter"/>
</map>
</property>
</bean>
FastJsonJsonView Configuration
<bean id="fastJsonJsonView" class="com.alibaba.fastjson.support.spring.FastJsonJsonView">
<property name="fastJsonConfig" ref="fastJsonConfig"/>
</bean>
<bean
class="org.springframework.web.servlet.view.ContentNegotiatingViewResolver">
<property name="order" value="1" />
<property name="contentNegotiationManager">
<bean class="org.springframework.web.accept.ContentNegotiationManager">
<constructor-arg>
<bean class="org.springframework.web.accept.PathExtensionContentNegotiationStrategy">
<constructor-arg>
<map>
<entry key="json" value="application/json" />
</map>
</constructor-arg>
</bean>
</constructor-arg>
</bean>
</property>
<property name="defaultViews">
<list>
<ref bean="fastJsonJsonView"/>
</list>
</property>
</bean>
如有需要修改本注脚,请联系阿里巴巴,
© Alibaba Fastjson Develop Team
注明: 版权所有阿里巴巴,请注明版权所有者
If you need to amend this footnote, please contact Alibaba.
© Alibaba Fastjson Develop Team
Note: Copyright Alibaba, please indicate the copyright owner