# easy-spring-boot-api **Repository Path**: pddon/easy-spring-boot-api ## Basic Information - **Project Name**: easy-spring-boot-api - **Description**: 基于springboot的快速api开发框架 - **Primary Language**: Java - **License**: MIT - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 85 - **Forks**: 20 - **Created**: 2024-03-12 - **Last Updated**: 2025-05-30 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README

easy-spring-boot-api框架

# 传送门 **[Gitee源码地址:https://gitee.com/pddon/easy-spring-boot-api](https://gitee.com/pddon/easy-spring-boot-api)** **[演示地址:https://demo.pddon.cn/doc.html(暂未部署)](http://www.pddon.com:8181/doc.html)** # 1、应用场景 ## 简介 > 本项目是基于springboot的api接口开发框架,可用于构建OpenAPI、业务系统的接口服务器等等。其特点如下: > > * 简化接口开发、接口对接工作 > * 增强接口易用性、安全性 > * 标准化接口请求/响应参数、格式、错误码、异常处理、国际化翻译、接口日志、接口调用频次控制 > * 增加了一些通用功能支持(如:缓存、锁、防重提交、接口覆盖、会话控制等等)。 > * 通过其提供的注解功能即可启用,可以做到零配置零代码即可集成常用api开发需要的所有基础能力。 > * 支持常用api的灵活自定义实现,包括且不限于加签验签、加解密算法等等功能! > * 支持yaml配置启停各种预置功能 > * 提供多种客户端包接入,现已提供java版本和Typescript版本客户端包 > > 集成该项目后,不用再从零实现api安全、加签、验签、加解密、数据脱敏、异常处理、国际化、接口文档、错误码、缓存、会话、接口替换、分布式锁、应用、渠道管理等等功能。 > > * java版本客户端就在此项目下:easy-spring-boot-api-client > * TS版本客户端地址:[https://github.com/pddon/easy-api-client](https://github.com/pddon/easy-api-client) > > 快速入门教程: https://github.com/pddon/easy-spring-boot-api/blob/main/doc/quickStart.md ## 1.1 项目架构说明 ### 1.1.1 easy-spring-boot-api跟Springboot的关系 1. 说明 * easy-spring-boot-api是基于springboot开发的,自然强依赖于springboot * easy-spring-boot-api在springboot提供的能力之上,为开发者开发API接口提供了很多通用功能,比如接口安全(加签、验签、加解密、数据脱敏)、参数校验、防重复提交、缓存、锁、异常处理、请求响应格式规范和自动包装、国际化翻译、api接入应用渠道管理、接口文档等等功能,提供了默认实现,且支持自定义替换或拓展相关功能 2. 示意图 * easy-spring-boot-api使用了springboot带来的所有便利,其在springmvc的基础上提供了额外的功能增强,如下图所示 ![easy-spring-boot-api业务流程图](doc/imgs/业务流程图.jpg) ### 1.1.2 easy-spring-boot-api项目组件架构解析 * 架构图 ![easy-spring-boot-api内部组件架构图](doc/imgs/内部组件架构图.jpg) * 组件介绍 主要分为以下几类组件 1. API调用拦截器 > 基于AOP切面设计的一套API请求、响应拦截处理流程。提供了在调用接口前后做一些通用的预处理,比如说参数校验、参数装饰、访问控制、日志输出、会话控制等等。目前内置的拦截器有: > > * 系统参数校验器 > * 请求参数校验器 > * 数字签名请求验签器、响应加签器 > * 接口防重复提交控制器 > * 接口用户会话控制器 > * 接口日志打印器 > * 接口访问控制器 > * 请求、响应内容装饰器 > > 也支持业务灵活定制通用的API调用拦截器。 2. 参数装饰器 > 参数装饰器机制通过遍历参数内容,逐个字段进行修饰,具体修饰规则由特定的装饰器制定。常见的使用场景有,对请求参数解密、响应参数加密、响应参数国际化、响应参数脱敏等等 > > 注意:参数装饰器只能对参数内容做修饰,而无法改变参数类型。 > > 目前内置的参数装饰器有: > > * 请求参数解密器 > * 响应参数加密器 > * 系统参数自动填充器 > * 响应参数国际化翻译器 > > 也支持业务灵活拓展参数装饰器。 3. API响应序列化预处理器 > 响应预处理器机制可以在接口返回内容给调用者之前进行额外的处理,此时可以更灵活的修饰返回内容,可以突破无法修改参数类型的限制,适用于对整个响应结构定制化处理的场景。 > > 目前内置的响应预处理器有: > > * API响应自动包装预处理器 > * API响应错误码和系统参数定制化转换器 > > 当然,也支持业务灵活拓展。 4. 方法查询缓存拦截器 > 提供对查询类方法调用的结果进行缓存。 5. API异常统一处理器 > 接口调用过程中任何步骤出现异常,均能自动处理,并反馈信息给调用者。 > > 支持对特定异常自定义处理,如果未处理,统一交由内置的默认异常处理器进行护理。 6. 统一国际化翻译管理器 > 接口返回内容均支持国际化翻译能力。 > > 已整合了spring i18n国际化翻译能力,也支持拓展业务自定义国际化翻译器。 7. 统一错误码管理器 > 研发人员无需再关注业务错误码的定义和国际化翻译工作,可以做到定义简单、使用简单、易于理解、配置灵活 > > * 支持自定义系统错误码、业务错误码 > * 支持业务错误码自动生成 > * 支持业务错误码以异常的方式抛出,系统自动处理 8. 方法分布式锁拦截器 > 提供注解标注方法是否需要启用分布式锁,解决接口并发问题 9. 接口替换功能 > 通过注解配置实现替换系统已有接口,拓展其功能,可用于一些基于标准项目的客开项目定制化开发 10. 自动接口文档生成器 > 已内置swagger+knif4j,只需指定API包路径即可实现接口文档的自动生成。 11. 其他更多功能就不一一赘述,等你来发现哦。。。。。。 ## 1.2 其他说明 * 如果你有遇到如下困扰时,你也许可以尝试使用easy-spring-boot-api框架 > >1. 服务器API缺乏统一标准的输入输出参数,难以统一规范开发人员的接口格式 > >2. 缺乏简单、高效、统一的接口异常处理机制 > >3. 绞尽脑汁思考错误码的命名、编号和处理机制 > >4. 虽然使用参数校验注解校验API请求参数已经非常方便,但是又对其缺乏校验结果的统一处理而苦恼 > >5. 项目服务于多个国家的用户,繁重的国际化工作也许会让你崩溃 > >6. API缺乏权限控制、安全认证、数据加密、防重复提交等等,直接裸奔 > >7. 还没有找到顺手的服务器缓存工具,对springcache的注解槽点满满等 > >8. 时常为了写接口文档而占用太多coding time,而且接口文档还无法实时与接口变更保持同步 > 现在你有福了,你只需要引入easy-spring-boot-api框架,并为你的SpringBoot应用添加`@EnableEasyApi`注解,即可解决上述所有的困扰! * easy-spring-boot-api为你默默做了哪些工作呢? * 首先,easy-spring-boot-api是基于springboot的web应用框架,享受了springboot带来的一切便利性 * 再者,其对开发WEB JSON API 的规范性、易用性、健壮性做了很多的业务增强 * easy-spring-boot-api的存在意义在哪? > 一个字,那就是"爽",让开发者爽,让接口使用者爽! * 规范web应用的API输入输出 * 简化开发人员的工作,节省研发成本! * easy-spring-boot-api提供的业务功能有哪些呢? > 其提供了如下业务功能: > > 1. 规范API请求参数,支持系统参数名自定义和系统参数的拓展,系统参数的校验等等 > 2. 规范API响应参数,支持系统参数名自定义和添加额外的系统参数 > 3. API响应信息自动补全系统参数,开发者无需再手动添加响应壳信息 > 4. 应用内统一的国际化翻译能力,已经整合spring i18n,而且支持业务灵活拓展国际化能力 > 5. 接口响应信息国际化,为需要国际化的字段添加`@LanguageTranslate`注解即可自动翻译内容后返回给调用者 > 6. 统一的异常处理机制,全局拦截API调用异常并处理,处理结果经国际化处理后以标准的API响应格式返回给调用者,业务侧可以对特定异常进行灵活处理 > 7. 简单易用的接口错误码,发现不满足API执行条件,直接抛出`BusinessException`异常即可通过统一异常处理机制得到预期的API响应。支持自定义系统错误码、业务错误码;依据业务错误码KEY值自动生成错误码数值;并可以对服务内的自动生成的业务错误码值进行范围限制,这样有助于不同业务服务间的错误码分段; > 8. API请求参数、响应参数的自动校验,校验结果自动处理后通过API响应反馈给调用者 > 9. 简单方便的缓存管理器,使用Guava cache作为默认的本地缓存管理器,支持缓存管理器的灵活拓展,提供`@CacheMethodResult`和`@CacheMethodResultEvict`注解实现方法接口结果的缓存和失效 > 10. 接口安全相关组件,验签、加解密、防重复提交等等,使用时只需要为你的API添加一个注解即可搞定 > 11. 接口会话管理机制,提供Guava cache实现的默认本地会话管理器,支持业务灵活定制以支持分布式会话管理 > 12. 接口文档化支持,提供了swagger接口文档自动生成,并整合了knife4j提供简单易用的实时api文档,支持在线调试和多种格式的离线导出 > 13. 接口调用日志打印,提供对接口请求参数信息、接口响应信息的简要打印,预留了接口调用日志持久化机制,用于业务方定制流量监控相关功能 > 14. 更多分布式缓存、数据存储相关功能(迭代加) > 15. web容器性能参数优化(迭代加) > 16. 接口实时流量监控和管理(迭代加) > 17. 更细粒度的接口访问权限控制(迭代加),主要为应用提供简洁易用的内置权限管理组件 > 18. 日志采集功能的集成支持(迭代加) > 19. devops的支持(迭代加) # 2、项目模块 ## 2.1 项目模块介绍 | 模块 | 说明 | 地址 | | --------------------------- | --------------------------------------- | ------------------------------------------------------------ | | easy-spring-boot-api | 为springboot应用提供API业务增强解决方案 | https://mvnrepository.com/artifact/com.pddon.framework/easy-spring-boot-api | | easy-spring-boot-api-demo | EasyApi框架使用完整示例demo | https://github.com/pddon/easy-spring-boot-api/tree/master/easy-spring-boot-api-demo | | easy-spring-boot-api-client | EasyApi框架java版客户端工具包 | https://github.com/pddon/easy-spring-boot-api/tree/master/easy-spring-boot-api-client | ## 2.2 项目版本依赖 - **easy-spring-boot-api 1.0.x-1.1.x版本使用到的第三方依赖如下所示** | Category/License | | Group / Artifact | Version | Updates | | :----------------------------------------------------------: | ------------------------------------------------------------ | ------------------------------------------------------------ | :----------------------------------------------------------: | :----------------------------------------------------------: | | [Bytecode](https://mvnrepository.com/open-source/bytecode-libraries) Apache 2.0 | ![logo](https://mvnrepository.com/img/36cfc0f02952ee8ec4287a964459c83b) | [cglib](https://mvnrepository.com/artifact/cglib) » [cglib-nodep](https://mvnrepository.com/artifact/cglib/cglib-nodep) | [ 3.1](https://mvnrepository.com/artifact/cglib/cglib-nodep/3.1) | [3.3.0](https://mvnrepository.com/artifact/cglib/cglib-nodep/3.3.0) | | Apache 2.0 | ![logo](https://mvnrepository.com/img/dcbecb3f624f92b8114c301b93cb7584) | [com.github.xiaoymin](https://mvnrepository.com/artifact/com.github.xiaoymin) » [knife4j-spring-boot-starter](https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-boot-starter) | [ 2.0.6](https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-boot-starter/2.0.6) | [3.0.3](https://mvnrepository.com/artifact/com.github.xiaoymin/knife4j-spring-boot-starter/3.0.3) | | [Base64](https://mvnrepository.com/open-source/base64-libraries) Apache 2.0 | ![logo](https://mvnrepository.com/img/0c44e3998569145e628d7d13a288ba5a) | [commons-codec](https://mvnrepository.com/artifact/commons-codec) » [commons-codec](https://mvnrepository.com/artifact/commons-codec/commons-codec) | [ 1.14](https://mvnrepository.com/artifact/commons-codec/commons-codec/1.14) | [1.16.1](https://mvnrepository.com/artifact/commons-codec/commons-codec/1.16.1) | | Apache 2.0MIT | ![logo](https://mvnrepository.com/img/24847bc539dd874c2fa5c16656f79f97) | [net.logstash.logback](https://mvnrepository.com/artifact/net.logstash.logback) » [logstash-logback-encoder](https://mvnrepository.com/artifact/net.logstash.logback/logstash-logback-encoder) | [ 5.0](https://mvnrepository.com/artifact/net.logstash.logback/logstash-logback-encoder/5.0) | [7.4](https://mvnrepository.com/artifact/net.logstash.logback/logstash-logback-encoder/7.4) | | [AOP](https://mvnrepository.com/open-source/aop-programming) EPL 2.0 | ![logo](https://mvnrepository.com/img/be00b7704f7142d8a71b7a3354ecd39a) | [org.aspectj](https://mvnrepository.com/artifact/org.aspectj) » [aspectjweaver](https://mvnrepository.com/artifact/org.aspectj/aspectjweaver) | [ 1.9.6](https://mvnrepository.com/artifact/org.aspectj/aspectjweaver/1.9.6) | [1.9.21.2](https://mvnrepository.com/artifact/org.aspectj/aspectjweaver/1.9.21.2) | | [CodeGen](https://mvnrepository.com/open-source/code-generators) MIT | ![logo](https://mvnrepository.com/img/55c118774847d72925d47b54b3287b2d) | [org.projectlombok](https://mvnrepository.com/artifact/org.projectlombok) » [lombok](https://mvnrepository.com/artifact/org.projectlombok/lombok) (optional) | [ 1.18.20](https://mvnrepository.com/artifact/org.projectlombok/lombok/1.18.20) | [1.18.32](https://mvnrepository.com/artifact/org.projectlombok/lombok/1.18.32) | | [Validation](https://mvnrepository.com/open-source/validation) Apache 2.0 | ![logo](https://mvnrepository.com/img/98d8f4cfc82730584887c57255cf3af0) | [org.springframework.boot](https://mvnrepository.com/artifact/org.springframework.boot) » [spring-boot-starter-validation](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation) | [ 2.3.12.RELEASE](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation/2.3.12.RELEASE) | [3.2.4](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-validation/3.2.4) | | [Web Framework](https://mvnrepository.com/open-source/web-frameworks) Apache 2.0 | ![logo](https://mvnrepository.com/img/98d8f4cfc82730584887c57255cf3af0) | [org.springframework.boot](https://mvnrepository.com/artifact/org.springframework.boot) » [spring-boot-starter-web](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web)[1 vulnerability ](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web/2.3.12.RELEASE) | [ 2.3.12.RELEASE](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web/2.3.12.RELEASE) | [3.2.4](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-web/3.2.4) | | Apache 2.0 | ![logo](https://mvnrepository.com/img/98d8f4cfc82730584887c57255cf3af0) | [org.springframework.boot](https://mvnrepository.com/artifact/org.springframework.boot) » [spring-boot-starter-undertow](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-undertow) | [ 2.3.12.RELEASE](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-undertow/2.3.12.RELEASE) | [3.2.4](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-undertow/3.2.4) | | [App Server](https://mvnrepository.com/open-source/application-servers) Apache 2.0 | ![logo](https://mvnrepository.com/img/98d8f4cfc82730584887c57255cf3af0) | [org.springframework.boot](https://mvnrepository.com/artifact/org.springframework.boot) » [spring-boot-starter](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter) (optional) | [ 2.3.12.RELEASE](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter/2.3.12.RELEASE) | [3.2.4](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter/3.2.4) | | [Annotation Tool](https://mvnrepository.com/open-source/annotation-tools) Apache 2.0 | ![logo](https://mvnrepository.com/img/98d8f4cfc82730584887c57255cf3af0) | [org.springframework.boot](https://mvnrepository.com/artifact/org.springframework.boot) » [spring-boot-configuration-processor](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor) (optional) | [ 2.3.12.RELEASE](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor/2.3.12.RELEASE) | [3.2.4](https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-configuration-processor/3.2.4) | # 3、入门demo > 此demo是使用easy-spring-boot-api的入门示例,演示了easy-spring-boot-api在无侵入的模式下为你的项目提供了参数校验、业务异常的使用等功能,为了简化入门门槛,暂未提供其他功能的示例,如果需要学习使用更多功能,[请参考更多示例](doc/demos.md)。 ## 3.1 项目结构 * 项目结构 ```ruby ├─src │ └─main │ ├─java │ │ └─com │ │ └─pddon │ │ └─framework │ │ └─demo │ │ └─easyapi │ │ ├─controller │ │ │ │ │ │ │ └─ TestController.java │ │ │ │ │ └─startup │ │ StartDemoApplication.java #项目启动类 │ │ │ └─resources │ │ application.yml #项目配置信息,可省略 │ │ │ └─i18n #自定义国际化支持,可省略 │ └─messages #项目自定义国际化翻译信息 │ messages.properties │ messages_en_US.properties │ messages_zh_CN.properties │ #还可添加其他国际化翻译内容 └─ pom.xml ``` * 引入模块依赖,在`pom.xml`添加 ```xml com.pddon.framework easy-spring-boot-api ${easy-spring-boot-api.version} ``` ## 3.2 启用easy-spring-boot-api框架 ```java /** * Title StartDemoApplication.java * Description * @author danyuan * @date Oct 31, 2020 * @version 1.0.0 * site: www.pddon.com */ package com.pddon.framework.demo.easyapi; import org.springframework.boot.SpringApplication; import org.springframework.boot.autoconfigure.SpringBootApplication; import com.pddon.framework.EnableEasyApi; @SpringBootApplication @EnableEasyApi public class StartDemoApplication { public static void main(String[] args) { SpringApplication.run(StartDemoApplication.class, args); } } ``` ## 3.3 测试接口代码示例 * 代码如下,`TestController.java` ```java /** * Title TestController.java * Description * @author danyuan * @date Dec 27, 2020 * @version 1.0.0 * site: www.pddon.com */ package com.pddon.framework.demo.easyapi.controller; import java.util.HashMap; import java.util.Map; import javax.validation.Valid; import javax.validation.constraints.NotBlank; import javax.validation.constraints.NotEmpty; import javax.validation.constraints.Size; import org.springframework.validation.annotation.Validated; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RestController; import com.pddon.framework.easyapi.BusinessException; @RestController @Validated public class TestController { /** * 参数自动校验、响应内容自动包装功能示例 * @author danyuan */ @GetMapping("queryUserInfo") public Map queryUserInfo(@Valid @Size(max=20, min=6) @NotBlank @RequestParam String username){ System.out.println("查询用户["+username+"]的信息!"); //TODO: 执行业务逻辑 //mock数据 Map userInfos = new HashMap<>(); userInfos.put("username", username); userInfos.put("age", 23); userInfos.put("sex", "男"); userInfos.put("desc", "阳光乐观外向,喜欢唱歌、打篮球!"); //返回数据 return userInfos; } /** * 业务异常的使用示例 * @author danyuan */ @PostMapping("user/regist") public void userRegist(@Valid @NotEmpty String username, @Valid @NotEmpty String password){ //TODO: 执行业务逻辑,发现账号已存在,直接通过抛出异常的方式提示用户 throw new BusinessException("用户名[{0}]已存在,请更换!").setParam(username); } } ``` ## 3.4 测试接口结果 > 接口文档访问地址:http://localhost:8080/doc.html ![](doc/imgs/get-start-demo/接口文档首页.png) ### 3.4.1 测试参数校验 * 请求参数 * knif4j接口文档调试时自动提示参数不能为空 ![](doc/imgs/get-start-demo/测试参数校验_请求1.png) * 提交非法请求参数 ![](doc/imgs/get-start-demo/测试参数校验_请求2.png) * 结果 ```json { "msg": "[参数异常]", #错误信息概览 "code": 120002, #系统错误码 "data": { "subErrors": [ { "error": "javax.validation.constraints.Size.message",#业务错误码 "msg": "[queryUserInfo.username]个数必须在6和20之间" #详细错误信息 } ] } } ``` ### 3.4.2 测试正常响应信息返回 * 请求参数 ![](doc/imgs/get-start-demo/测试正常响应信息返回_请求.png) * 结果 ![](doc/imgs/get-start-demo/测试正常响应信息返回_结果.png) ```json { "code": 0, "data": { "sex": "男", "age": 23, "username": "Jone Lacy", "desc": "阳光乐观外向,喜欢唱歌、打篮球!" } } ``` ### 3.4.3 测试业务异常的使用 * 请求参数 ![](doc/imgs/get-start-demo/测试业务异常的使用_请求.png) * 结果 ![](doc/imgs/get-start-demo/测试业务异常的使用_响应.png) ```json { "msg": "用户名[test]已存在,请更换!", "code": 200000 } ``` ## 3.5 更多功能示例 * 系统内置接口 ![系统内置接口](doc/imgs/系统内置接口.png) * 业务系统接口 ![业务系统接口](doc/imgs/业务系统接口.png) * 接口文档示例 ![](doc/imgs/接口文档示例.png) * 接口测试示例 * 接口参数校验失败测试结果示例 ![接口参数校验失败测试结果](doc/imgs/接口参数校验异常测试结果.png) * 接口访问成功结果示例 ![接口正常响应测试结果](doc/imgs/接口正常响应测试结果.png) * 国际化接口访问示例(英文) ![](doc/imgs/国际化请求参数_en_US.png) ![](doc/imgs/国际化翻译响应信息_en_US.png) * 国际化接口访问示例(中文) ![](doc/imgs/国际化请求参数_zh_CN.png) ![](doc/imgs/国际化翻译响应信息_zh_CN.png) # 4、更多特性介绍与使用示例 **[使用示例传送门](doc/demos.md)** # 5、业务定制化 ## 5.1 配置定制化 * 接口文档个性化 * 系统参数定制化 * 系统公共请求参数名自定义 * 添加额外的系统公共请求参数 * 系统公共响应参数名自定义 * 添加额外的系统响应参数 * 业务国际化内容 > 可以通过springboot i18n添加或者定制国际化内容 ## 5.2 组件定制化 > easy-spring-boot-api提供了灵活定制通用组件的能力。 > > 1. 内置的几大管理器都可以替换成自定义的管理器,如: > * 缓存管理器 > * 会话管理器 > * 国际化管理器 > * 数字签名管理器 > * 秘钥管理器 > * 应用管理器 > * 接口日志管理器 > * 接口调用频次控制管理器 > 2. 可以添加自定义接口调用拦截器,实现一些通用业务 > 3. 可以添加自定义接口请求、响应参数装饰器,对参数进行加工 > 4. 可以添加自定义响应序列化预处理器,根据业务需要定制化返回信息 > 5. 可以添加自定义异常处理器,为目标类型的异常做额外的处理 > 6. 可以灵活定制和使用自定义的加解密处理器 # 6、交流与答疑 > ​ 此项目的设计初衷源于本人在多年API接口开发经验上,从接口规范、开发便捷易用、配置简单这些角度出发而总结出来的一套API解决方案。通过简单引入easy-spring-boot-api组件,可以快速搭建一套规范易用的API开发系统。 > > ​ 开源的目的在于,一则希望此项目能帮助更多的研发人员提升API开发质量,提供大量易用的开发套件提升研发人员的开发效率;二则希望更多的人加入到开源中,促进开源项目的成长,然后服务于更多的开发者;其次希望觉得此项目不错的朋友给个Star,分享给更多的朋友,让大家一起进步! > > ​ 如果在使用此框架的过程中有任何疑问或者好的建议可以通过以下联系方式找到大部队,大家一起交流一起进步! | 渠道 | 联系地址 | 说明 | | ----------- |------------------------------------------------------|-----------------------------| | QQ群 | 757901536 | 可加QQ群,进行技术交流 | | 邮箱号 | allen@pddon.com | 有问题也可以发邮件留言 | | gitee Issue | https://github.com/pddon/easy-spring-boot-api/issues | 在使用过程中如果遇到问题,可以提Issue,不定时回复 | | 微信公众号 | ![胖弟弟科技](doc/imgs/wechatBlog.png) | 关注公众号不迷路,不定期分享技术文章 |