前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >自定义枚举 --- Gson转换

自定义枚举 --- Gson转换

作者头像
十毛
发布2019-03-27 15:17:57
1.1K0
发布2019-03-27 15:17:57
举报
文章被收录于专栏:用户1337634的专栏

通过Restful接口返回的JSON数据默认是枚举的名字,但是使用自定义枚举时,一般统一使用自定义的code来代表。所以需要自定义HttpMessageConverter

CodedTypeTypeAdapter

代码语言:javascript
复制
import com.google.gson.*;
import com.utils.mybatis.CodedEnum;

import java.lang.reflect.Type;

/**
 * CodedEnum在GSON中的转换规则,使用code,而不是字符
 *
 * @param <E>
 * @author tenmao
 */
public class CodedTypeTypeAdapter<E extends Enum<E> & CodedEnum> implements JsonSerializer<E>, JsonDeserializer<E> {
    @Override
    public E deserialize(JsonElement jsonElement, Type type, JsonDeserializationContext jsonDeserializationContext) throws JsonParseException {
        if (type instanceof Class) {
            @SuppressWarnings("unchecked")
            Class<E> klass = (Class<E>) type;
            return CodedEnum.codeOf(klass, jsonElement.getAsInt()).orElse(null);
        } else {
            throw new RuntimeException(String.format("json %s cannot convert to type %s", jsonElement, type));
        }
    }

    @Override
    public JsonElement serialize(E e, Type type, JsonSerializationContext jsonSerializationContext) {
        return new JsonPrimitive(e.getCode());
    }
}

HttpMessageConverter

代码语言:javascript
复制
import com.google.gson.GsonBuilder;
import com.tenmao.utils.mybatis.CodedEnum;
import com.tenmao.utils.mybatis.converter.CodedTypeTypeAdapter;
import lombok.extern.slf4j.Slf4j;
import org.reflections.Reflections;
import org.reflections.scanners.SubTypesScanner;
import org.springframework.http.converter.json.GsonHttpMessageConverter;

import java.util.Set;

/**
 * @author tenmao
 * @since 2017/12/1
 */
@Slf4j
public class HttpMessageConverter extends GsonHttpMessageConverter {
    public HttpMessageConverter() {
        final GsonBuilder builder = new GsonBuilder();
        final Reflections reflections = new Reflections("com.tenmao", new SubTypesScanner(true));
        final Set<String> allClasses = reflections.getStore().getSubTypesOf(CodedEnum.class.getName());
        for (String klass : allClasses) {
            try {
                final Class<?> aClass = Class.forName(klass);
                builder.registerTypeAdapter(aClass, new CodedTypeTypeAdapter<>());
            } catch (ClassNotFoundException e) {
                log.error("fail to register for gson", e);
            }
        }
        setGson(builder.create());
    }
}

spring-mvc.xml

代码语言:javascript
复制
<mvc:annotation-driven>
      <mvc:message-converters>
            <bean class="com.tenmao.web.mvc.support.HttpMessageConverter" />
      </mvc:message-converters>
</mvc:annotation-driven>

完成

实现上述步骤后,只要实现接口CodedEnum的自定义枚举都可以自动转换为其code

自定义枚举系列

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2018.09.30 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • CodedTypeTypeAdapter
  • HttpMessageConverter
  • spring-mvc.xml
  • 完成
  • 自定义枚举系列
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档