All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alibaba.fastjson2.support.spring.data.redis.FastJsonJSONBRedisSerializer Maven / Gradle / Ivy

The newest version!
package com.alibaba.fastjson2.support.spring.data.redis;

import com.alibaba.fastjson2.support.config.FastJsonConfig;

/**
 * Fastjson(JSONB) for Spring Data Redis Serializer.
 *
 * @author Victor.Zxy
 * @see FastJsonRedisSerializer
 * @since 2.0.3
 */
@Deprecated
public class FastJsonJSONBRedisSerializer
        extends FastJsonRedisSerializer {
    public FastJsonJSONBRedisSerializer(Class type) {
        super(type);
        super.getFastJsonConfig().setJSONB(true);
    }

    @Override
    public void setFastJsonConfig(FastJsonConfig config) {
        config.setJSONB(true);
        super.setFastJsonConfig(config);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy