当前位置:   article > 正文

看看人家在接口中使用枚举类型的方式,那叫一个优雅!

apimodelproperty 枚举

点击上方“芋道源码”,选择“设为星标

管她前浪,还是后浪?

能浪的浪,才是好浪!

每天 10:33 更新文章,每天掉亿点点头发...

源码精品专栏

 

来源:geekhalo

b805e60552e719fe88f6cb7bdae6478f.jpeg


1. 概览

枚举作为 Java 5 的重要特征,相信大家并不陌生,但在实际开发过程中,当 name 和 ordrial 发生变化时,如果处理不当非常容易引起系统bug。这种兼容性bug非常难以定位,需要从框架层次进行避免,而非仅靠开发人员的主观意识。

1.1. 背景

枚举很好用,特别是提供的 name 和 ordrial 特性,但这点对重构造成了一定影响,比如:

  1. 某个枚举值业务语义发生变化,需要将其进行 rename 操作,以更好的表达新业务语义

  2. 新增、删除或者为了展示调整了枚举定义顺序

这些在业务开发中非常常见,使用 IDE 的 refactor 功能可以快速且准确的完成重构工作。但,如果系统将这些暴露出去或者存储到数据库等存储引擎就变得非常麻烦,不管是 name 还是 ordrial 的变更都会产生兼容性问题。

对此,最常见的解决方案便是放弃使用 name 和 ordrial,转而使用控制能力更强的 code。

1.2. 目标

提供一组工具,以方便的基于 code 使用枚举,快速完成对现有框架的集成:

  1. 完成与 Spring MVC 的集成,基于 code 使用枚举;加强返回值,以对象的方式进行返回,信息包括 code、name、description

  2. 提供统一的枚举字典,自动扫描系统中的枚举并将其以 restful 的方式暴露给前端

  3. 使用 code 进行数据存储操作,避免重构的影响

基于 Spring Boot + MyBatis Plus + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能

  • 项目地址:https://github.com/YunaiV/ruoyi-vue-pro

  • 视频教程:https://doc.iocoder.cn/video/

2. 快速入门

2.1. 添加 starter

在 Spring boot 项目的 pom 中增加如下依赖:

  1. <groupId>com.geekhalo.lego</groupId>
  2. <artifactId>lego-starter</artifactId>
  3. <version>0.1.19-enum-SNAPSHOT</version>

2.2. 统一枚举结构

如何统一枚举行为呢?公共父类肯定是不行的,但可以为其提供一个接口,在接口中完成行为的定义。

2.2.1. 定义枚举接口

除了在枚举中自定义 code 外,通常还会为其提供描述信息,构建接口如下:

  1. public interface CodeBasedEnum {
  2.     int getCode();
  3. }
  4. public interface SelfDescribedEnum {
  5.     default String getName(){
  6.         return name();
  7.     }
  8.     String name();
  9.     String getDescription();
  10. }
  11. public interface CommonEnum extends CodeBasedEnum, SelfDescribedEnum{
  12. }

整体结构如下:

cf4922d2ad6762d74c9ea1f09610f2c0.png

在定义枚举时便可以直接使用CommonEnum这个接口。

2.2.2. 实现枚举接口

有了统一的枚举接口,在定义枚举时便可以直接实现接口,从而完成对枚举的约束。

  1. public enum NewsStatus implements CommonEnum {
  2.     DELETE(1"删除"),
  3.     ONLINE(10"上线"),
  4.     OFFLINE(20"下线");
  5.     private final int code;
  6.     private final String desc;
  7.     NewsStatus(int code, String desc) {
  8.         this.code = code;
  9.         this.desc = desc;
  10.     }
  11.     @Override
  12.     public int getCode() {
  13.         return this.code;
  14.     }
  15.     @Override
  16.     public String getDescription() {
  17.         return this.desc;
  18.     }
  19. }

2.3. 自动注册 CommonEnum

有了统一的 CommonEnum 最大的好处便是可以进行统一管理,对于统一管理,第一件事便是找到并注册所有的 CommonEnum。

031fe68dcc87dc4d1a93934c3d8961c3.png

以上是核心处理流程:

  1. 首先通过 Spring 的 ResourcePatternResolver 根据配置的 basePackage 对classpath进行扫描

  2. 扫描结果以Resource来表示,通过 MetadataReader 读取 Resource 信息,并将其解析为 ClassMetadata

  3. 获得 ClassMetadata 之后,找出实现 CommonEnum 的类

  4. 将 CommonEnum 实现类注册到两个 Map 中进行缓存

备注:此处万万不可直接使用反射技术,反射会触发类的自动加载,将对众多不需要的类进行加载,从而增加 metaspace 的压力。

在需要 CommonEnum 时,只需注入 CommonEnumRegistry Bean 便可以方便的获得 CommonEnum 的具体实现。

2.4. Spring MVC 接入层

Web 层是最常见的接入点,对于 CommonEnum 我们倾向于:

  1. 参数使用 code 来表示,避免 name、ordrial 变化导致业务异常

  2. 丰富返回值,包括枚举的 code、name、description 等

89edffb5ad2ee37d089770b442470e4c.png
2.4.1. 入参转化

Spring MVC 存在两种参数转化扩展:

  1. 对于普通参数,比如 RequestParam 或 PathVariable 直接从 ConditionalGenericConverter 进行扩展

  • 基于 CommonEnumRegistry 提供的 CommonEnum 信息,对 matches 和 getConvertibleTypes方法进行重写

  • 根据目标类型获取所有的 枚举值,并根据 code 和 name 进行转化

  1. 对于 Json 参数,需要对 Json 框架进行扩展(以 Jackson 为例)

  • 遍历 CommonEnumRegistry 提供的所有 CommonEnum,依次进行注册

  • 从 Json 中读取信息,根据 code 和 name 转化为确定的枚举值

两种扩展核心实现见:

  1. @Order(1)
  2. @Component
  3. public class CommonEnumConverter implements ConditionalGenericConverter {
  4.     @Autowired
  5.     private CommonEnumRegistry enumRegistry;
  6.     @Override
  7.     public boolean matches(TypeDescriptor sourceType, TypeDescriptor targetType) {
  8.         Class<?> type = targetType.getType();
  9.         return enumRegistry.getClassDict().containsKey(type);
  10.     }
  11.     @Override
  12.     public Set<ConvertiblePair> getConvertibleTypes() {
  13.         return enumRegistry.getClassDict().keySet().stream()
  14.                 .map(cls -> new ConvertiblePair(String.class, cls))
  15.                 .collect(Collectors.toSet());
  16.     }
  17.     @Override
  18.     public Object convert(Object source, TypeDescriptor sourceType, TypeDescriptor targetType) {
  19.         String value = (String) source;
  20.         List<CommonEnum> commonEnums = this.enumRegistry.getClassDict().get(targetType.getType());
  21.         return commonEnums.stream()
  22.                 .filter(commonEnum -> commonEnum.match(value))
  23.                 .findFirst()
  24.                 .orElse(null);
  25.     }
  26. }
  27. static class CommonEnumJsonDeserializer extends JsonDeserializer{
  28.         private final List<CommonEnum> commonEnums;
  29.         CommonEnumJsonDeserializer(List<CommonEnum> commonEnums) {
  30.             this.commonEnums = commonEnums;
  31.         }
  32.         @Override
  33.         public Object deserialize(JsonParser jsonParser, DeserializationContext deserializationContext) throws IOException, JacksonException {
  34.             String value = jsonParser.readValueAs(String.class);
  35.             return commonEnums.stream()
  36.                     .filter(commonEnum -> commonEnum.match(value))
  37.                     .findFirst()
  38.                     .orElse(null);
  39.         }
  40.     }
2.4.2. 增强返回值

默认情况下,对于枚举类型在转换为 Json 时,只会输出 name,其他信息会出现丢失,对于展示非常不友好,对此,需要对 Json 序列化进行能力增强。

首先,需要定义 CommonEnum 对应的返回对象,具体如下:

  1. @Value
  2. @AllArgsConstructor(access = AccessLevel.PRIVATE)
  3. @ApiModel(description = "通用枚举")
  4. public class CommonEnumVO {
  5.     @ApiModelProperty(notes = "Code")
  6.     private final int code;
  7.     @ApiModelProperty(notes = "Name")
  8.     private final String name;
  9.     @ApiModelProperty(notes = "描述")
  10.     private final String desc;
  11.     public static CommonEnumVO from(CommonEnum commonEnum){
  12.         if (commonEnum == null){
  13.             return null;
  14.         }
  15.         return new CommonEnumVO(commonEnum.getCode(), commonEnum.getName(), commonEnum.getDescription());
  16.     }
  17.     public static List<CommonEnumVO> from(List<CommonEnum> commonEnums){
  18.         if (CollectionUtils.isEmpty(commonEnums)){
  19.             return Collections.emptyList();
  20.         }
  21.         return commonEnums.stream()
  22.                 .filter(Objects::nonNull)
  23.                 .map(CommonEnumVO::from)
  24.                 .filter(Objects::nonNull)
  25.                 .collect(Collectors.toList());
  26.     }
  27. }

CommonEnumVO 是一个标准的 POJO,只是增加了 Swagger 相关注解。

CommonEnumJsonSerializer 是自定义序列化的核心,会将 CommonEnum 封装为 CommonEnumVO 并进行写回,具体如下:

  1. static class CommonEnumJsonSerializer extends JsonSerializer{
  2.         @Override
  3.         public void serialize(Object o, JsonGenerator jsonGenerator, SerializerProvider serializerProvider) throws IOException {
  4.             CommonEnum commonEnum = (CommonEnum) o;
  5.             CommonEnumVO commonEnumVO = CommonEnumVO.from(commonEnum);
  6.             jsonGenerator.writeObject(commonEnumVO);
  7.         }
  8.     }
2.4.3. 效果展示

首先,新建一个测试枚举 NewsStatus,具体如下:

  1. public enum NewsStatus implements CommonEnum {
  2.     DELETE(1"删除"),
  3.     ONLINE(10"上线"),
  4.     OFFLINE(20"下线");
  5.     private final int code;
  6.     private final String desc;
  7.     NewsStatus(int code, String desc) {
  8.         this.code = code;
  9.         this.desc = desc;
  10.     }
  11.     @Override
  12.     public int getCode() {
  13.         return this.code;
  14.     }
  15.     @Override
  16.     public String getDescription() {
  17.         return this.desc;
  18.     }
  19. }

然后新建 EnumController,具体如下:

  1. @RestController
  2. @RequestMapping("enum")
  3. public class EnumController {
  4.     @GetMapping("paramToEnum")
  5.     public RestResult<CommonEnumVO> paramToEnum(@RequestParam("newsStatus") NewsStatus newsStatus){
  6.         return RestResult.success(CommonEnumVO.from(newsStatus));
  7.     }
  8.     @GetMapping("pathToEnum/{newsStatus}")
  9.     public RestResult<CommonEnumVO> pathToEnum(@PathVariable("newsStatus") NewsStatus newsStatus){
  10.         return RestResult.success(CommonEnumVO.from(newsStatus));
  11.     }
  12.     @PostMapping("jsonToEnum")
  13.     public RestResult<CommonEnumVO> jsonToEnum(@RequestBody NewsStatusRequestBody newsStatusRequestBody){
  14.         return RestResult.success(CommonEnumVO.from(newsStatusRequestBody.getNewsStatus()));
  15.     }
  16.     @GetMapping("bodyToJson")
  17.     public RestResult<NewsStatusResponseBody> bodyToJson(){
  18.         NewsStatusResponseBody newsStatusResponseBody = new NewsStatusResponseBody();
  19.         newsStatusResponseBody.setNewsStatus(Arrays.asList(NewsStatus.values()));
  20.         return RestResult.success(newsStatusResponseBody);
  21.     }
  22.     @Data
  23.     public static class NewsStatusRequestBody {
  24.         private NewsStatus newsStatus;
  25.     }
  26.     @Data
  27.     public static class NewsStatusResponseBody {
  28.         private List<NewsStatus> newsStatus;
  29.     }
  30. }

执行结果如下:

bd2554f2ef58f97bf9f6e80d97377bb1.png

整体符合预期:

  1. 使用 code 作为请求参数可以自动转化为对应的 CommonEnum

  2. 使用 CommonEnum 作为返回值,返回标准的 CommonEnumVO 对象结构

2.5. 通用枚举字典接口

有时可以将 枚举 理解为系统的一类字段,比较典型的就是管理页面的各种下拉框,下拉框中的数据来自于后台服务。

有了 CommonEnum 之后,可以提供统一的一组枚举字典,避免重复开发,同时在新增枚举时也无需进行扩展,系统自动识别并添加到字典中。

2.5.1. 构建字典Controller

在 CommonEnumRegistry 基础之上实现通用字典接口非常简单,只需按规范构建 Controller 即可,具体如下:

  1. @Api(tags = "通用字典接口")
  2. @RestController
  3. @RequestMapping("/enumDict")
  4. @Slf4j
  5. public class EnumDictController {
  6.     @Autowired
  7.     private CommonEnumRegistry commonEnumRegistry;
  8.     @GetMapping("all")
  9.     public RestResult<Map<String, List<CommonEnumVO>>> allEnums(){
  10.         Map<String, List<CommonEnum>> dict = this.commonEnumRegistry.getNameDict();
  11.         Map<String, List<CommonEnumVO>> dictVo = Maps.newHashMapWithExpectedSize(dict.size());
  12.         for (Map.Entry<String, List<CommonEnum>> entry : dict.entrySet()){
  13.             dictVo.put(entry.getKey(), CommonEnumVO.from(entry.getValue()));
  14.         }
  15.         return RestResult.success(dictVo);
  16.     }
  17.     @GetMapping("types")
  18.     public RestResult<List<String>> enumTypes(){
  19.         Map<String, List<CommonEnum>> dict = this.commonEnumRegistry.getNameDict();
  20.         return RestResult.success(Lists.newArrayList(dict.keySet()));
  21.     }
  22.     @GetMapping("/{type}")
  23.     public RestResult<List<CommonEnumVO>> dictByType(@PathVariable("type") String type){
  24.         Map<String, List<CommonEnum>> dict = this.commonEnumRegistry.getNameDict();
  25.         List<CommonEnum> commonEnums = dict.get(type);
  26.         return RestResult.success(CommonEnumVO.from(commonEnums));
  27.     }
  28. }

该 Controller 提供如下能力:

  1. 获取全部字典,一次性获取系统中所有的 CommonEnum

  2. 获取所有字典类型,仅获取字典类型,通常用于测试

  3. 获取指定字典类型的全部信息,比如上述所说的填充下拉框

2.5.2. 效果展示

获取全部字典:

f6ca4fed07e79add6a0c56ed5ebda783.png

获取所有字典类型:

c154f2e548cda651914ccfe499c50808.png

获取指定字段类型的全部信息:

3775a746feb21c598d60de817c79e35b.png

2.6. 输出适配器

输出适配器主要以 ORM 框架为主,同时各类 ORM 框架均提供了类型映射的扩展点,通过该扩展点可以对 CommonEnum 使用 code 进行存储。

2.6.1. MyBatis 支持

MyBatis 作为最流行的 ORM 框架,提供了 TypeHandler 用于处理自定义的类型扩展。

  1. @MappedTypes(NewsStatus.class)
  2. public class MyBatisNewsStatusHandler extends CommonEnumTypeHandler<NewsStatus> {
  3.     public MyBatisNewsStatusHandler() {
  4.         super(NewsStatus.values());
  5.     }
  6. }

MyBatisNewsStatusHandler 通过 @MappedTypes(NewsStatus.class) 对其进行标记,以告知框架该 Handler 是用于 NewsStatus 类型的转换。

CommonEnumTypeHandler 是为 CommonEnum 提供的通用转化能力,具体如下:

  1. public abstract  class CommonEnumTypeHandler<T extends Enum<T> & CommonEnum>
  2.         extends BaseTypeHandler<T> {
  3.     private final List<T> commonEnums;
  4.     protected CommonEnumTypeHandler(T[] commonEnums){
  5.         this(Arrays.asList(commonEnums));
  6.     }
  7.     protected CommonEnumTypeHandler(List<T> commonEnums) {
  8.         this.commonEnums = commonEnums;
  9.     }
  10.     @Override
  11.     public void setNonNullParameter(PreparedStatement preparedStatement, int i, T t, JdbcType jdbcType) throws SQLException {
  12.         preparedStatement.setInt(i, t.getCode());
  13.     }
  14.     @Override
  15.     public T getNullableResult(ResultSet resultSet, String columnName) throws SQLException {
  16.         int code = resultSet.getInt(columnName);
  17.         return commonEnums.stream()
  18.                 .filter(commonEnum -> commonEnum.match(String.valueOf(code)))
  19.                 .findFirst()
  20.                 .orElse(null);
  21.     }
  22.     @Override
  23.     public T getNullableResult(ResultSet resultSet, int i) throws SQLException {
  24.         int code = resultSet.getInt(i);
  25.         return commonEnums.stream()
  26.                 .filter(commonEnum -> commonEnum.match(String.valueOf(code)))
  27.                 .findFirst()
  28.                 .orElse(null);
  29.     }
  30.     @Override
  31.     public T getNullableResult(CallableStatement callableStatement, int i) throws SQLException {
  32.         int code = callableStatement.getInt(i);
  33.         return commonEnums.stream()
  34.                 .filter(commonEnum -> commonEnum.match(String.valueOf(code)))
  35.                 .findFirst()
  36.                 .orElse(null);
  37.     }
  38. }

由于逻辑比较简单,在此不做过多解释。

有了类型之后,需要在 spring boot 的配置文件中指定 type-handler 的加载逻辑,具体如下:

  1. mybatis:
  2.   type-handlers-package: com.geekhalo.lego.enums.mybatis

完成配置后,使用 Mapper 对数据进行持久化,数据表中存储的便是 code 信息,具体如下:

e31b1466dcf5fcbead8ae0e4b97eb193.png
2.6.2. JPA 支持

随着 Spring data 越来越流行,JPA 又焕发出新的活力,JPA 提供 AttributeConverter 以对属性转换进行自定义。

首先,构建 JpaNewsStatusConverter,具体如下:

  1. public class JpaNewsStatusConverter extends CommonEnumAttributeConverter<NewsStatus> {
  2.     public JpaNewsStatusConverter() {
  3.         super(NewsStatus.values());
  4.     }
  5. }

CommonEnumAttributeConverter 为 CommonEnum 提供的通用转化能力,具体如下:

  1. public abstract class CommonEnumAttributeConverter<E extends Enum<E> & CommonEnum>
  2.         implements AttributeConverter<E, Integer> {
  3.     private final List<E> commonEnums;
  4.     public CommonEnumAttributeConverter(E[] commonEnums){
  5.         this(Arrays.asList(commonEnums));
  6.     }
  7.     public CommonEnumAttributeConverter(List<E> commonEnums) {
  8.         this.commonEnums = commonEnums;
  9.     }
  10.     @Override
  11.     public Integer convertToDatabaseColumn(E e) {
  12.         return e.getCode();
  13.     }
  14.     @Override
  15.     public E convertToEntityAttribute(Integer code) {
  16.         return (E) commonEnums.stream()
  17.                 .filter(commonEnum -> commonEnum.match(String.valueOf(code)))
  18.                 .findFirst()
  19.                 .orElse(null);
  20.     }
  21. }

在有了 JpaNewsStatusConverter 之后,我们需要在 Entity 的属性上增加配置信息,具体如下:

  1. @Entity
  2. @Data
  3. @Table(name = "t_jpa_news")
  4. public class JpaNewsEntity {
  5.     @Id
  6.     @GeneratedValue(strategy = GenerationType.IDENTITY)
  7.     private Long id;
  8.     @Convert(converter = JpaNewsStatusConverter.class)
  9.     private NewsStatus status;
  10. }

@Convert(converter = JpaNewsStatusConverter.class) 是对 status 的配置,使用 JpaNewsStatusConverter 进行属性的转换。

运行持久化指令后,数据库如下:

c42e88a565b838edde1e8a5ae2089cb0.png

基于 Spring Cloud Alibaba + Gateway + Nacos + RocketMQ + Vue & Element 实现的后台管理系统 + 用户小程序,支持 RBAC 动态权限、多租户、数据权限、工作流、三方登录、支付、短信、商城等功能

  • 项目地址:https://github.com/YunaiV/yudao-cloud

  • 视频教程:https://doc.iocoder.cn/video/

3. 项目信息

项目仓库地址:https://gitee.com/litao851025/lego



欢迎加入我的知识星球,一起探讨架构,交流源码。加入方式,长按下方二维码噢

36cd8b18d999bb5db30a55af63ead132.png

已在知识星球更新源码解析如下:

5628cc7aadf96459faba43ca019bc782.jpeg

b2d15fb3cd8381f5cf882c7a960d82ba.jpeg

213161d57c8edfefef38f0ae4f45cef5.jpeg

263533d7a0a0c10caccce4dc03ae5adb.jpeg

最近更新《芋道 SpringBoot 2.X 入门》系列,已经 101 余篇,覆盖了 MyBatis、Redis、MongoDB、ES、分库分表、读写分离、SpringMVC、Webflux、权限、WebSocket、Dubbo、RabbitMQ、RocketMQ、Kafka、性能测试等等内容。

提供近 3W 行代码的 SpringBoot 示例,以及超 4W 行代码的电商微服务项目。

获取方式:点“在看”,关注公众号并回复 666 领取,更多内容陆续奉上。

  1. 文章有帮助的话,在看,转发吧。
  2. 谢谢支持哟 (*^__^*)
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/Cpp五条/article/detail/388685
推荐阅读
相关标签
  

闽ICP备14008679号