ssm之用FastJSON实现后台自动返回json数据给页面

ssm之用FastJSON实现后台自动返回json数据给页面

网有很多关于该部分的内容,但大部分都是教怎返回json字符串而不是通过配置实现返回json格式的对象。而在现实开发中,大部分都用ajax来请求后端,而得到对象的json数据,比如微信小程序和angularjs等。废话有的多,下面开始,在此仅作整合参考。
1.肯定是引入所需要的jar包
我自己用的是阿里的FastJson,网上还有很多用jackson
maven依赖如下:


        <dependency>
            <groupId>com.alibabagroupId>
            <artifactId>fastjsonartifactId>
            <version>1.2.46version>
        dependency>

2.在springmvc的配置文件springmvc.xml中添加如下代码
如果没有其它的处理器加进来

<mvc:annotation-driven>

        <mvc:message-converters
                register-defaults="true">
            
            
            <bean id="fastJsonHttpMessageConverter"
                  class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        
                        <value>application/json;charset=UTF-8value>
                    list>
                property>
                <property name="features">
                    <array
                            value-type="com.alibaba.fastjson.serializer.SerializerFeature">
                        
                        <value>DisableCircularReferenceDetectvalue>
                        
                         <value>WriteMapNullValuevalue>
                         
                         QuoteFieldNames
                        
                        
                        
                        <value>WriteNullStringAsEmptyvalue>
                        
                        <value>WriteNullListAsEmptyvalue>
                        
                        
                    array>
                property>
            bean>
        mvc:message-converters>
    mvc:annotation-driven>

至于其中更多value及其用法参考fastJson的SerializerFeature属性
由于我还添加了一个接受时间转换的转换器,所以写成下面这样

<mvc:annotation-driven conversion-service="conversionService">
        <mvc:message-converters
                register-defaults="true">
            
            
            <bean id="fastJsonHttpMessageConverter"
                  class="com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter">
                <property name="supportedMediaTypes">
                    <list>
                        
                        <value>application/json;charset=UTF-8value>
                    list>
                property>
                <property name="features">
                    <array value-type="com.alibaba.fastjson.serializer.SerializerFeature">
                        <value>WriteNullStringAsEmptyvalue>
                        <value>WriteNullListAsEmptyvalue>
                        <value>WriteMapNullValuevalue>
                        <value>QuoteFieldNamesvalue>
                    array>
                property>
            bean>
        mvc:message-converters>
    mvc:annotation-driven>
    //转换器
<bean id="conversionService"     
 class="org.springframework.format.support.FormattingConversionServiceFactoryBean">
        <property name="converters">
            <set>
                <ref bean="dateConvert"/>
            set>
        property>
    bean>

3.配置完成,只要在controller层需要返回json格式的对象的方法加上@ResponseBody注解即可
效果如下:
在这里插入图片描述
至此本文结束,如有不当之处,往多加指正;

你可能感兴趣的:(spring)