點(diǎn)擊訪問(wèn)ApiBoot官網(wǎng)托猩,提供快速接入尊沸、詳細(xì)使用文檔等谤祖。
ApiBoot 簡(jiǎn)介
ApiBoot
是一款基于SpringBoot1.x
兄世,SpringBoot2.x
的接口服務(wù)集成基礎(chǔ)框架
敬拓,內(nèi)部提供了框架的封裝集成
邻薯、使用擴(kuò)展
、自動(dòng)化配置
等乘凸,讓接口開(kāi)發(fā)者可以選著性完成開(kāi)箱即用厕诡,不再為搭建接口框架而犯愁,從而極大的提高開(kāi)發(fā)效率营勤。
本次更新
-
ApiBoot RateLimiter
- 添加Redis Lua腳本分布式限流方式
- 修復(fù)攔截ApiBoot Swagger靜態(tài)資源問(wèn)題
- 添加全局限流配置參數(shù)
- 添加開(kāi)啟全局限流配置
- 使用Nacos做分布式限流配置中心灵嫌,可實(shí)時(shí)更新限流配置,完成流量突增應(yīng)對(duì)
Wiki:https://github.com/hengboy/api-boot/wiki/ApiBoot-RateLimiter
-
ApiBoot Mybatis Enhance Codegen
初版發(fā)布葛作,專(zhuān)為ApiBoot Mybatis Enhance編寫(xiě)寿羞,主要完成如下工作:
Wiki:https://github.com/hengboy/api-boot/wiki/ApiBoot-Mybatis-Enhance-Codegen-
數(shù)據(jù)庫(kù)表數(shù)據(jù)實(shí)體自動(dòng)生成
package org.minbox.framework.api.boot.sample; import com.gitee.hengboy.mybatis.enhance.common.annotation.Column; import com.gitee.hengboy.mybatis.enhance.common.annotation.Id; import com.gitee.hengboy.mybatis.enhance.common.annotation.Table; import com.gitee.hengboy.mybatis.enhance.common.enums.KeyGeneratorTypeEnum; import lombok.Data; import java.sql.Timestamp; /** * 文章信息表 * @author ApiBoot Mybatis Enhance Codegen */ @Data @Table(name = "kl_article_info") public class KlArticleInfo { /** * 主鍵自增 */ @Id(generatorType = KeyGeneratorTypeEnum.UUID) @Column(name = "AI_ID") private String aiId; /** * 文章所屬用戶(hù) */ @Column(name = "AI_USER_ID") private String aiUserId; /** * 文章標(biāo)題 */ @Column(name = "AI_TITLE") private String aiTitle; //...省略其他字段 }
-
-
數(shù)據(jù)庫(kù)表動(dòng)態(tài)查詢(xún)實(shí)體自動(dòng)生成
package org.minbox.framework.api.boot.sample; import com.gitee.hengboy.mybatis.enhance.dsl.expression.ColumnExpression; import com.gitee.hengboy.mybatis.enhance.dsl.expression.TableExpression; /** * 文章信息表 * @author ApiBoot Mybatis Enhance Codegen */ public class DKlArticleInfo extends TableExpression<KlArticleInfo> { public DKlArticleInfo(String root) { super(root); } public static DKlArticleInfo DSL() { return new DKlArticleInfo("kl_article_info"); } /** * 主鍵自增 */ public ColumnExpression aiId = new ColumnExpression("AI_ID", this); /** * 文章所屬用戶(hù) */ public ColumnExpression aiUserId = new ColumnExpression("AI_USER_ID", this); /** * 文章標(biāo)題 */ public ColumnExpression aiTitle = new ColumnExpression("AI_TITLE", this); // ... 省略其他字段 }
-
like語(yǔ)法過(guò)濾指定表生成實(shí)體
<tableNamePattern>kl%</tableNamePattern>
可以使用
like
語(yǔ)法指定kl
開(kāi)頭的表進(jìn)行自動(dòng)生成對(duì)應(yīng)數(shù)據(jù)實(shí)體。
更新日志
源碼赂蠢、文檔地址
GitHub Wiki:https://gitee.com/minbox-projects/api-boot/wiki
碼云 Wiki:https://gitee.com/minbox-projects/api-boot/wikis
ApiBoot:https://gitee.com/minbox-projects/api-boot
MinBox Logging:https://gitee.com/minbox-projects/minbox-logging
ApiBoot 目前集成組件
ApiBoot
提供的所有封裝依賴(lài)對(duì)應(yīng)第三方框架關(guān)系如下所示:
依賴(lài)名稱(chēng) | 介紹 |
---|---|
api-boot-starter | 所有Starter的基礎(chǔ)依賴(lài) |
ApiBoot 整合案例 | ApiBoot落地使用示例绪穆,是恒宇少年知識(shí)庫(kù)小程序接口源碼 |
api-boot-starter-mail | ApiBoot集成阿里云郵件服務(wù) |
api-boot-starter-logging-admin | ApiBoot Logging日志管理端,統(tǒng)一接收采集 |
api-boot-starter-logging | 零侵入虱岂、鏈路式日志分析框架 |
api-boot-starter-http-converter | 集成FastJson作為格式化返回JSON |
api-boot-starter-security-oauth-jwt | 集成SpringSecurity玖院、Oauth、Jwt安全量瓜、認(rèn)證框架 |
api-boot-starter-swagger | 集成Swagger2作為接口服務(wù)文檔 |
api-boot-starter-alibaba-oss | 集成阿里云Oss對(duì)象存儲(chǔ)接口服務(wù) |
api-boot-starter-alibaba-sms | 集成阿里云國(guó)際短信接口服務(wù) |
api-boot-starter-quartz | 集成分布式定時(shí)任務(wù)框架Quartz |
api-boot-starter-datasource-switch | 集成支持多數(shù)據(jù)源自動(dòng)切換司恳、動(dòng)態(tài)創(chuàng)建數(shù)據(jù)源 |
api-boot-starter-resource-load | 資源與業(yè)務(wù)完全分離途乃、自動(dòng)化讀取 |
api-boot-starter-message-push | 推送服務(wù)绍傲,集成極光推送 |
api-boot-starter-rate-limiter | 接口QPS限流 |
api-boot-starter-mybatis-enhance | 集成Myabtis Enhance 持久化框架 |
api-boot-starter-mybatis-pageable | 集成Mybatis Pageable 自動(dòng)分頁(yè)插件 |
api-boot-mybatis-enhance-maven-codegen | Mybatis Enhance專(zhuān)屬代碼插件 |