diboot/diboot-core
mazhicheng 422aa47954 +数据字典初始化SQL 2019-08-10 19:45:13 +08:00
..
src +数据字典初始化SQL 2019-08-10 19:45:13 +08:00
README.md 1. 增加BindQuery注解,用于Entity/DTO对象直接转换为QueryWrapper查询对象; 2. 优化Pagination对象,以便在Controller中可以自动注入属性值; 2019-08-07 09:44:16 +08:00
build.gradle + 增加注册接口 2019-07-11 16:07:52 +08:00

README.md

diboot-core: 全新优化内核

主要实现:

  1. 多表关联的自动绑定, 实现单表CRUD和多表关联的无SQL化
  2. 提供其他常用开发场景的最佳实践封装。

** 一. 单表CRUD无SQL

依赖Mybatis-Plus实现Mybatis-Plus具备通用Mapper方案和灵活的查询构造器

** 二. 多表关联查询无SQL适用于大多数场景拆分成单表查询自动实现结果绑定

通过注解实现多数场景下的关联查询无SQL

1. 注解自动绑定数据字典(自定义枚举)的显示值Label

@BindDict(type="USER_STATUS", field = "status")
private String statusLabel;

2. 注解自动绑定其他表的字段

// 支持关联条件+附加条件绑定字段
@BindField(entity=Department.class, field="name", condition="department_id=id AND parent_id>=0")
private String deptName;

// 支持通过中间表的级联关联绑定字段
@BindField(entity = Organization.class, field="name", condition="this.department_id=department.id AND department.org_id=id")
private String orgName;

3. 注解自动绑定其他表实体Entity

// 支持关联条件+附加条件绑定Entity
@BindEntity(entity = Department.class, condition="department_id=id")
private Department department;

// 通过中间表的级联关联绑定Entity支持附加条件
@BindEntity(entity = Organization.class, condition = "this.department_id=department.id AND department.org_id=id AND department.deleted=0")
private Organization organization;

4. 注解自动绑定其他表实体集合List

// 支持关联条件+附加条件绑定多个Entity
@BindEntityList(entity = Department.class, condition = "id=parent_id")
private List<Department> children;

// 通过中间表的 多对多关联 绑定Entity支持附加条件
@BindEntityList(entity = Role.class, condition="this.id=user_role.user_id AND user_role.role_id=id")
private List<Role> roleList;

** 三. 使用方式

1. 引入依赖

Gradle:

compile("com.diboot:diboot-core:2.0.1")

或Maven

<dependency>
    <groupId>com.diboot</groupId>
    <artifactId>diboot-core</artifactId>
    <version>2.0.1</version>
</dependency>

注: @BindDict注解需要依赖dictionary表初始化SQL需执行/META-INF/sql/init-mysql.sql

2. 定义你的Service继承diboot的BaseService或Mybatis-plus的ISerivice及Mapper

3. 使用注解绑定:

调用RelationsBinder自动绑定注解相关关联

方式1. 自动绑定关联(不需要转型)

//List<MyUserVO> voList = ...; 
RelationsBinder.bind(voList);

方式2. 自动转型并绑定关联(需要转型)

// 查询单表获取Entity集合
// List<User> entityList = userService.list(queryWrapper);
List<MyUserVO> voList = RelationsBinder.convertAndBind(userList, MyUserVO.class);

四. 样例参考 - diboot-core-example