feat(api-doc): 增加基础枚举处理器支持枚举插件显示

- pom.xml 中添加 nextdoc4j-plugin-enums 依赖
- 在 SpringDocAutoConfiguration 中新增 BaseEnumProcessor Bean
- 实现 BaseEnumProcessor 用于 nextdoc4j 枚举插件支持
- BaseEnumProcessor 判断枚举类型并关联 BaseEnum 接口
This commit is contained in:
吴泽威
2025-12-24 17:55:32 +08:00
parent 4a82325b51
commit 776acc6e5c
3 changed files with 60 additions and 0 deletions

View File

@@ -28,5 +28,11 @@
<artifactId>nextdoc4j-springboot3-starter</artifactId>
</dependency>
<!--nextdoc4j - 枚举插件-->
<dependency>
<groupId>top.nextdoc4j</groupId>
<artifactId>nextdoc4j-plugin-enums</artifactId>
</dependency>
</dependencies>
</project>