本篇內(nèi)容介紹了“自定義枚舉gson的轉(zhuǎn)換”的有關(guān)知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠?qū)W有所成!
目前創(chuàng)新互聯(lián)已為千余家的企業(yè)提供了網(wǎng)站建設(shè)、域名、網(wǎng)站空間、網(wǎng)站托管、服務(wù)器租用、企業(yè)網(wǎng)站設(shè)計、燈塔網(wǎng)站維護等服務(wù),公司將堅持客戶導向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長,共同發(fā)展。
import com.google.gson.*; import com.utils.mybatis.CodedEnum; import java.lang.reflect.Type; /** * CodedEnum在GSON中的轉(zhuǎn)換規(guī)則,使用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()); } }
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()); } }
<mvc:annotation-driven> <mvc:message-converters> <bean class="com.tenmao.web.mvc.support.HttpMessageConverter" /> </mvc:message-converters> </mvc:annotation-driven>
實現(xiàn)上述步驟后,只要實現(xiàn)接口CodedEnum
的自定義枚舉都可以自動轉(zhuǎn)換為其code
值
“自定義枚舉gson的轉(zhuǎn)換”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實用文章!
網(wǎng)頁題目:自定義枚舉gson的轉(zhuǎn)換
網(wǎng)頁鏈接:http://www.rwnh.cn/article22/jdjpcc.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站維護、企業(yè)網(wǎng)站制作、品牌網(wǎng)站建設(shè)、App開發(fā)、面包屑導航、虛擬主機
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)