使用fastjson后@JsonProperty注解失效的问题(fastJsonConfig.setSerializerFeatures)

有需求List类型的字段如果为null,输出为[],而非null,将String类型的字段如果为null,输出为"",而非null 

于是添加了fastJsonConfig.setSerializerFeatures()拦截处理数据后@JsonProperty注解失效了如下

@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)  //不返回给前端

解决办法:使用@JSONField注解如下

@JSONField(serialize = false) //不管这个字段有没有值都不返回给前端

具体添加的fastjson的代码:

package com.ruoyi.web;

import com.alibaba.fastjson.serializer.SerializerFeature;
import com.alibaba.fastjson.support.config.FastJsonConfig;
import com.alibaba.fastjson.support.spring.FastJsonHttpMessageConverter;
import java.util.List;
import org.springframework.context.annotation.Configuration;
import org.springframework.http.converter.HttpMessageConverter;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;


@Configuration
public class MvcConfig implements WebMvcConfigurer {


    @Override
    public void configureMessageConverters(List<HttpMessageConverter<?>> converters) {

        FastJsonHttpMessageConverter fastConverter = new FastJsonHttpMessageConverter();

        FastJsonConfig fastJsonConfig = new FastJsonConfig();

            fastJsonConfig.setSerializerFeatures(

                SerializerFeature.WriteNullStringAsEmpty,                        // 将String类型的字段如果为null,输出为"",而非null

//            SerializerFeature.WriteNullNumberAsZero,                         // 将Number类型的字段如果为null,输出为0,而非null

                SerializerFeature.WriteNullListAsEmpty,                          // 将List类型的字段如果为null,输出为[],而非null

//            SerializerFeature.WriteNullBooleanAsFalse,                      // 将Boolean类型的字段如果为null,输出为false,而非null

                SerializerFeature.DisableCircularReferenceDetect                // 避免循环引用

        );

//        fastJsonConfig.setDateFormat("yyyy-MM-dd");                   // 全局时间格式化为yyyy-MM-dd HH:mm:ss

        fastConverter.setFastJsonConfig(fastJsonConfig);

        converters.add(0, fastConverter);

    }

}
@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)是一个注解,用于在序列化和反序列化过程中指定属性的访问权限。当属性被标记为@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)时,该属性仅在反序列化时被使用,而在序列化时被忽略。 引用了一个示例,其中私有属性password被标记为@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)。这意味着该属性只能在反序列化时被使用,而在序列化时将被忽略。 此注解提供了更加灵活的属性控制,使得我们可以在特定情况下限制属性的访问权限,以提高数据的安全性和隐私保护。通过使用@JsonProperty(access = JsonProperty.Access.WRITE_ONLY),我们可以确保在序列化时不会暴露敏感信息,例如密码等。 需要注意的是,@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)注解仅适用于Jackson库,用于处理JSON序列化和反序列化。在序列化和反序列化过程中,该注解可以通过指定属性的访问级别来控制属性的处理方式。 总之,@JsonProperty(access = JsonProperty.Access.WRITE_ONLY)是一个用于控制属性访问权限的注解,它可用于在序列化和反序列化过程中限制属性的可见性。<span class="em">1</span><span class="em">2</span><span class="em">3</span> #### 引用[.reference_title] - *1* [@JsonProperty注解](https://blog.csdn.net/zkkzpp258/article/details/125120601)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] - *2* *3* [Jackson注解@JsonProperty介绍](https://blog.csdn.net/Maxiao1204/article/details/125904220)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v93^chatsearchT3_1"}}] [.reference_item style="max-width: 50%"] [ .reference_list ]
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值