# mybatis.flying
**Repository Path**: wadecp3/mybatis.flying
## Basic Information
- **Project Name**: mybatis.flying
- **Description**: mybatis最好的插件组合
- **Primary Language**: Java
- **License**: Not specified
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 18
- **Created**: 2017-10-20
- **Last Updated**: 2024-12-01
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# mybatis.flying
[](https://travis-ci.org/limeng32/mybatis.flying)
[](https://codecov.io/gh/limeng32/mybatis.flying/branch/master)
[](https://maven-badges.herokuapp.com/maven-central/com.github.limeng32/mybatis.flying)
[](https://github.com/limeng32/mybatis.flying/releases)
[](https://www.apache.org/licenses/LICENSE-2.0.html)
项目介绍请见 [flying-doc.limeng32.com](http://flying-doc.limeng32.com) ,我们为开发最好的 mybatis 插件而努力。
flying 是一个可以极大增加 mybatis 开发速度的插件组,它提供了一种全新的操作数据的方式,希望能对您有所帮助。
众所周知,mybatis 虽然易于上手,但放到互联网环境下使用时,不可避免的要面对诸如‘’一级缓存存在脏数据‘’、‘’需要写大量明文 SQL 语句‘’等问题。对于这些问题 mybatis 的开发团队选择了一种谦逊的方式,他们开放 mybatis 接口,允许用户开发插件,按自己的方式来解决这些问题。于是,一切 ORM 领域相关的问题在 mybatis 上通过插件都有了解决方案。
#### flying 主要特点:
以前我们在 mapper.xml 中要写很复杂的 sql 语句,但现在在 mapper.xml 中只需这样:
```xml
flying:insert
flying:insert
flying:delete
```
再在您的实体类上加上这样一些标注:
```Java
package myPackage;
import org.apache.ibatis.type.JdbcType;
import indi.mybatis.flying.annotations.FieldMapperAnnotation;
import indi.mybatis.flying.annotations.TableMapperAnnotation;
@TableMapperAnnotation(tableName = "account")
public class Account {
@FieldMapperAnnotation(dbFieldName = "account_id", jdbcType = JdbcType.INTEGER, isUniqueKey = true)
private Integer id;
@FieldMapperAnnotation(dbFieldName = "name", jdbcType = JdbcType.VARCHAR)
private java.lang.String name;
@FieldMapperAnnotation(dbFieldName = "age", jdbcType = JdbcType.INTEGER)
private Integer age;
/* 省略 getter 和 setter */
}
```
flying 就完全明白您的数据结构和您想做的事情了。 接下来您增删改查这个实体就会变得非常简单:
```Java
/* 新增 */
Account newAccount = new Account();
newAccount.setName("ann");
newAccount.setAge(18);
accountService.insert(newAccount);
/* 按主键查询 */
Account account = accountService.select(newAccount.getId());
/* 按姓名查询,这里忽略了年龄 */
Account accountC1 = new Account();
accountC1.setName("ann");
Account account1 = accountService.selectOne(accountC1);
/* account1 和 account 代表相同的业务数据 */
/* 按年龄查询,这里忽略了姓名 */
Account accountC2 = new Account();
accountC2.setAge(18);
Account account2 = accountService.selectOne(accountC2);
/* account2 和 account 代表相同的业务数据 */
/* 按姓名和年龄查询 */
Account accountC3 = new Account();
accountC3.setName("ann");
accountC3.setAge(18);
Account account3 = accountService.selectOne(accountC3);
/* account3 和 account 代表相同的业务数据 */
/* 修改 */
account.setName("bob");
accountService.update(newAccount);
/* 按主键删除 */
accountService.delete(newAccount);
```
由于 flying 掌握了您全部的数据结构和实体关系,所以操作数据变得非常简单,您再也不需要定义 “getAccountByIDName、getAccountByName” 这样的方法了,由此带来更大的好处是您的 service 层只需要关注事务方面的逻辑即可,它从低级代码中完全解放了出来。以上只是 flying 功能的冰山一角,其它的功能如多表联查、分页、乐观锁、跨数据源查询、二级缓存等 flying 都有简单的解决方案,您可以在 [flying-doc.limeng32.com](http://flying-doc.limeng32.com) 中进行查看。
flying 特点总结如下:
- 数据操作入参和返回类型都是自定义的实体类,完全 no sql 杜绝各种‘’手滑‘’,项目可随意重构。
- 支持跨表操作和跨数据源操作。
- 非侵占工作机制,可以和您已有的 mybatis 方法协同工作。
- 加入了优化过的缓存插件,可以对多数据源环境下 flying 方法和传统 mybatis 方法同时进行缓存管理。
#### flying 获取方式:
flying 的 maven 坐标为:
```xml
com.github.limeng32
mybatis.flying
0.9.1
```
mybatis 版本与 flying 最新版本的对应关系见下:
|mybatis 版本|flying 版本 |
|---|---|
|3.2.6、3.2.7、3.2.8|0.7.3|
|3.3.0、3.3.1|0.8.1|
|3.4.0、3.4.1、3.4.2、3.4.3、3.4.4、3.4.5|0.9.1|
之所以采用分版本发布的方式是因为我们对 mybatis 每个版本的用户都认真负责,力求使您得到 flying 最大的好处。
#### flying 代码示例:
我们还为您提供了两个快速上手的示例:
1. 单数据源不使用缓存:[https://gitee.com/ro4074/flying-demo](https://gitee.com/ro4074/flying-demo)
2. 多数据源且使用缓存:[https://gitee.com/ro4074/flying-demo2](https://gitee.com/ro4074/flying-demo2)
更多内容请您参见软件文档 [flying-doc.limeng32.com](http://flying-doc.limeng32.com)。