日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 > 编程语言 > c/c++ >内容正文

c/c++

[转载] spring mvc自定义int枚举转换器

發(fā)布時(shí)間:2025/3/11 c/c++ 27 豆豆
生活随笔 收集整理的這篇文章主要介紹了 [转载] spring mvc自定义int枚举转换器 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

參考鏈接: Java中具有自定義值的枚舉

2019獨(dú)角獸企業(yè)重金招聘Python工程師標(biāo)準(zhǔn)>>>? ?

??

?public class MyIntegerEnumConverters {

? ? @WritingConverter

? ? public static class EnumToIntegerConverter implements Converter<IntEnumConvertable, String> {

? ? ? ? @Override

? ? ? ? public String convert(IntEnumConvertable source) {

? ? ? ? ? ? return String.valueOf(source.getValue());

? ? ? ? }

? ? }

}

?

?public class MyIntegerToEnumConverterFactory implements ConverterFactory<String, Enum> {

? ? @Override

? ? public <T extends Enum> Converter<String, T> getConverter(Class<T> targetType) {

? ? ? ? Class<?> enumType = targetType;

? ? ? ? while (enumType != null && !enumType.isEnum()) {

? ? ? ? ? ? enumType = enumType.getSuperclass();

? ? ? ? }

? ? ? ? if (enumType == null) {

? ? ? ? ? ? throw new IllegalArgumentException(

? ? ? ? ? ? ? ? ? ? "The target type " + targetType.getName() + " does not refer to an enum");

? ? ? ? }

? ? ? ? return new IntegerToEnum(enumType);

? ? }

?

? ? @ReadingConverter

? ? public static class IntegerToEnum<T extends IntEnumConvertable> implements Converter<String, IntEnumConvertable> {

? ? ? ? private final Class<T> enumType;

?

? ? ? ? public IntegerToEnum(Class<T> enumType) {

? ? ? ? ? ? this.enumType = enumType;

? ? ? ? }

?

? ? ? ? @Override

? ? ? ? public IntEnumConvertable convert(String source) {

? ? ? ? ? ? for (T t : enumType.getEnumConstants()) {

? ? ? ? ? ? ? ? if (t instanceof IntEnumConvertable) {

? ? ? ? ? ? ? ? ? ? if (t.getValue() == Integer.valueOf(source)) {

? ? ? ? ? ? ? ? ? ? ? ? return t;

? ? ? ? ? ? ? ? ? ? }

? ? ? ? ? ? ? ? }

? ? ? ? ? ? }

? ? ? ? ? ? return null;

? ? ? ? }

? ? }

?

?

}

?

?public interface IntEnumConvertable extends Serializable {

? ? int getValue();

}

?

?registry.addConverter(new MyIntegerEnumConverters.EnumToIntegerConverter());

registry.addConverter(new MyIntegerToEnumConverterFactory.IntegerToEnum(null));

registry.addConverterFactory(new MyIntegerToEnumConverterFactory());

?

??

? ?

? ??

? ?

??

?

轉(zhuǎn)載于:https://my.oschina.net/stategrace/blog/749572

總結(jié)

以上是生活随笔為你收集整理的[转载] spring mvc自定义int枚举转换器的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。