fastJsonによるmap回転Json操作時にmap中空値を保持


fastJsonによるmap回転Json操作


import java.util.HashMap;
import java.util.Map;

import com.alibaba.fastjson.JSONObject;

/**
 * @author WangZhe
 * 
 * @date 2020 6 18 
 */
public class Test {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Map map = new HashMap(0);
        map.put("test", null);
        System.out.println(JSONObject.toJSONString(map));
    }

}

結果
{}

ビジネスでnull値を保持する必要がある場合は、SerializerFeatureパラメータを追加するリロードメソッドを交換する必要があります.
import java.util.HashMap;
import java.util.Map;

import com.alibaba.fastjson.JSONObject;
import com.alibaba.fastjson.serializer.SerializerFeature;

/**
 * @author WangZhe
 * 
 * @date 2020 6 18 
 */
public class Test {

    /**
     * @param args
     */
    public static void main(String[] args) {
        Map map = new HashMap(0);
        map.put("test", null);
        System.out.println(JSONObject.toJSONString(map,SerializerFeature.WRITE_MAP_NULL_FEATURES, SerializerFeature.QuoteFieldNames));
    }

}

結果
{"test":null}

SerializerFeatureパラメータ説明参考ブログ
https://blog.csdn.net/u010246789/article/details/52539576