共计 1645 个字符,预计需要花费 5 分钟才能阅读完成。
在之前一篇文章 MyBatis 多表关联的无 SQL 通用方案 中我们提到了注解绑定关联查询的实践方案,这里我们再汇总梳理一下常用开发场景中需要涉及到 关联 的场景以及其要支持的绑定方式。
1. 注解自动绑定数据字典 (自定义枚举) 的显示值 Label
开发过程中的枚举值,比如用户状态(ACTIVE: 激活,LOCKED: 锁定 …)、身份证类型等,我们会将其名称 name 和值 value 定义在数据字典表,以支持扩展不改代码以及用户可编辑。其他数据表中关联该字典时,存储对应的 value,显示时又需要查询字典表将 value 转换为对应的 name。
通过注解绑定,我希望简单使用如这样:
@BindDict(type="USER_STATUS", field = "status")
private String statusLabel;
2. 注解自动绑定其他表的字段
如部门实体 Department(department 表的 Java 映射对象)对应的 VO 对象中需要关联组织 Organization 实体(organization 表的映射对象)。
我希望简单使用如这样:
// 支持关联条件 + 附加条件绑定字段
@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
如部门实体 Department(department 表的 Java 映射对象)对应的 VO 对象中需要关联组织 Organization 实体(organization 表的映射对象)。
我希望简单使用如这样:
// 支持关联条件 + 附加条件绑定 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>
如部门实体 Department 对应的 VO 对象中需要关联多个子部门 Department 实体。
我希望简单使用如这样:
// 支持关联条件 + 附加条件绑定多个 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;
实现以上方案,开发过程中的大部分关联场景 SQL 都可以大大简化,使代码具备极好的可维护性。另外以上方案实现需要拆解成单表查询 SQL 通过主键去查询,可以充分利用数据库缓存,提高性能。
详细了解其实现代码,请至 Diboot – 简单高效的轻代码开发框架 (欢迎 star)
正文完
发表至:无分类
2019-11-08