spring中的枚举类型转换

前端所发送的参数本质上是string类型,正常情况下会由框架提供的转换器自动帮我们,直接复制到后端由于接收参数的实体对象或同类型的参数中

但是

当前端传了一个数字代表某种状态,而后端用枚举类型进行接收时,就会发生错误。

此时,可以自定义转换器

当前端以param格式传来数据时

方法一 自定义converter:

复制代码
@Component
//String为前端传来的值
//ItemType为需要转化为的枚举类型的枚举类
public class StringToItemTypeConverter implements Converter<String, ItemType> {
    @Override
    public ItemType convert(String code) {
        //遍历枚举类,若存在对应的值,则返回枚举类型
        ItemType[] values = ItemType.values();
        for (ItemType itemType : values) {
            if (itemType.getCode().equals(Integer.valueOf(code))){
                return itemType;
            }
        }
        throw new IllegalArgumentException("code:"+code+"非法");
    }
}

//即将将前端发来的值,转化为对应的枚举类型

方法二 自定义converter工厂

复制代码
@Component
//BaseEnum为多个枚举类的父接口//工厂可以将String转化为实现BaseEnum接口中子枚举类类
public class StringToBaseEnumConverterFactory implements ConverterFactory<String, BaseEnum> {
    @Override
    public <T extends BaseEnum> Converter<String, T> getConverter(Class<T> targetType) {
        //返回一个Converter
        return new Converter<String, T>() {
            @Override
            public T convert(String code) {
        //还是遍历,但我们并不知道调用此converter时,所需要转换为的目标枚举类
        //则通过targetType反射获取目标枚举类
                T[] enumConstants = targetType.getEnumConstants();
                for (T constant : enumConstants) {
                    if (constant.getCode().equals(Integer.valueOf(code))){
                        return constant;
                    }
                }
                throw new IllegalArgumentException("code:"+code+"非法");
            }
        };
    }
}

//当存在多个枚举类时,并不需要逐一创建对应的converter,而是可通过创建通用converter工厂。当后端用枚举类型进行接收时,会自动调用该转换器

对自定义的转换器进行配置

复制代码
@Configuration
public class WebMvcConfiguration implements WebMvcConfigurer {
    @Autowired
    private StringToItemTypeConverter stringToItemTypeConverter;

    @Autowired
    private StringToBaseEnumConverterFactory stringToBaseEnumConverterFactory;

    @Override
    public void addFormatters(FormatterRegistry registry) {
        registry.addConverter(this.stringToItemTypeConverter);
        registry.addConverterFactory(this.stringToBaseEnumConverterFactory);
      }
}

当前端以Json格式传来数据时

public enum ItemType implemts BaseEnum {

//默认转换规则是枚举对象实例(ItemType.APARTMENT)和实例名称("APARTMENT")相互映射

//ItemType.ROOM<->ROOM

//后端发送给前端的json字符串中code并非是我们想要的数字

APARTMENT(1, "公寓"),

ROOM(2, "房间");

//使用使用注解JsonValue,当发送转化时,则会变成

ItemType.ROOM<->code

@JsonValue

private Integer code;

private String name;

ItemType(Integer code, String name) {

this.code = code;

this.name = name;

}

}

MVC和数据库的交互

public enum ItemType implemts BaseEnum {

//正常情况下,数据库中的状态以数字保存,但在mvc中是枚举类型,而以默认的TypeHeandler进行转化时,给后端发去的参数并非是对应的数字,而是

ItemType.ROOM<->ROOM

此时就会报错

APARTMENT(1, "公寓"),

ROOM(2, "房间");

//使用注解EnumValue,当发送转化时,则会变成

ItemType.ROOM<->code

@JsonValue

@EnumValue

private Integer code;

private String name;

ItemType(Integer code, String name) {

this.code = code;

this.name = name;

}

}

BaseEnum

复制代码
public interface BaseEnum {

    Integer getCode();

    String getName();
}
相关推荐
黑胡子大叔的小屋12 分钟前
基于springboot的海洋知识服务平台的设计与实现
java·spring boot·毕业设计
ThisIsClark14 分钟前
【后端面试总结】深入解析进程和线程的区别
java·jvm·面试
星就前端叭43 分钟前
【开源】一款基于Vue3 + WebRTC + Node + SRS + FFmpeg搭建的直播间项目
前端·后端·开源·webrtc
计算机毕设孵化场1 小时前
计算机毕设-基于springboot的校园社交平台的设计与实现(附源码+lw+ppt+开题报告)
spring boot·课程设计·计算机毕设论文·计算机毕设ppt·计算机毕业设计选题推荐·计算机选题推荐·校园社交平台
雷神乐乐1 小时前
Spring学习(一)——Sping-XML
java·学习·spring
苹果醋31 小时前
Golang的文件加密工具
运维·vue.js·spring boot·nginx·课程设计
小林coding2 小时前
阿里云 Java 后端一面,什么难度?
java·后端·mysql·spring·阿里云
AI理性派思考者2 小时前
【保姆教程】手把手教你在Linux系统搭建早期alpha项目cysic的验证者&证明者
后端·github·gpu
V+zmm101342 小时前
基于小程序宿舍报修系统的设计与实现ssm+论文源码调试讲解
java·小程序·毕业设计·mvc·ssm
从善若水2 小时前
【2024】Merry Christmas!一起用Rust绘制一颗圣诞树吧
开发语言·后端·rust