美文网首页Spring Boot 核心技术spring bootSpring Boot
ApiBoot:《SpringBoot》整合组件接口服务框架落地

ApiBoot:《SpringBoot》整合组件接口服务框架落地

作者: 恒宇少年 | 来源:发表于2019-03-13 16:33 被阅读631次

    ApiBoot是一款基础的接口服务框架的整合,开箱即用,对于接口服务的开发者而言可以很大的提高开发效率,之前在SpringBoot系列文章内也有很多同学让我出一个整合的示例,这个也可以当做结合我编写的文章的示例来看,每个版本的迭代都会把之前文章的内容加入进去,当然也会有很多的扩展,让使用者运用自如。

    源码码云地址:https://gitee.com/hengboy/api-boot
    源码GitHub地址:https://github.com/hengboy/api-boot
    开箱即用使用文档:https://github.com/hengboy/api-boot/wiki

    最新版本

    当前版本集成如下所示:

    • SpringSecurity
    • Oauth2
    • Jwt
    • 统一返回格式
    • Swagger2 文档生成
    • Mybatis-Enhance
    • Code-Builder
    • Profile
    • Lombok
    • FastJson

    版本规划

    下一个版本的迭代主要是集成第三方依赖如下所示:

    • 七牛云上传/下载
    • 阿里云OSS上传/下载
    • 阿里云短信服务
    • 内置事件发布(Spring Event)

    目录概述

    . framework
    ├── converter
    ├── enums
    ├── event
    ├── model
    ├── security
    │   ├── delegate
    │   ├── jdbc
    │   ├── properties
    │   └── userdetails
    └── tools
    

    ApiBoot集成框架相关的代码实现都在com.github.hengboy.api.boot.framework目录下,如果你需要编写自己的业务尽可能的在framework的同级目录创建package来进行编写,ApiBoot默认扫描com.github.hengboy.api.boot目录下的所有类。

    开源许可

    ApiBoot采用Apache2开源许可。

    相关文章

      网友评论

        本文标题:ApiBoot:《SpringBoot》整合组件接口服务框架落地

        本文链接:https://www.haomeiwen.com/subject/vtstmqtx.html