All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.hutool.db.ActiveEntity Maven / Gradle / Ivy

Go to download

Hutool是一个小而全的Java工具类库,通过静态方法封装,降低相关API的学习成本,提高工作效率,使Java拥有函数式语言般的优雅,让Java语言也可以“甜甜的”。

There is a newer version: 5.8.34
Show newest version
package cn.hutool.db;

import java.sql.SQLException;
import java.util.Collection;

import cn.hutool.core.lang.func.Func0;
import cn.hutool.core.map.MapUtil;

/**
 * 动态实体类
* 提供了针对自身实体的增删改方法 * * @author Looly * */ public class ActiveEntity extends Entity { private static final long serialVersionUID = 6112321379601134750L; private final Db db; // --------------------------------------------------------------- Static method start /** * 创建ActiveEntity * * @return ActiveEntity */ public static ActiveEntity create() { return new ActiveEntity(); } /** * 创建ActiveEntity * * @param tableName 表名 * @return ActiveEntity */ public static ActiveEntity create(String tableName) { return new ActiveEntity(tableName); } /** * 将PO对象转为Entity * * @param Bean对象类型 * @param bean Bean对象 * @return ActiveEntity */ public static ActiveEntity parse(T bean) { return create(null).parseBean(bean); } /** * 将PO对象转为ActiveEntity * * @param Bean对象类型 * @param bean Bean对象 * @param isToUnderlineCase 是否转换为下划线模式 * @param ignoreNullValue 是否忽略值为空的字段 * @return ActiveEntity */ public static ActiveEntity parse(T bean, boolean isToUnderlineCase, boolean ignoreNullValue) { return create(null).parseBean(bean, isToUnderlineCase, ignoreNullValue); } /** * 将PO对象转为ActiveEntity,并采用下划线法转换字段 * * @param Bean对象类型 * @param bean Bean对象 * @return ActiveEntity */ public static ActiveEntity parseWithUnderlineCase(T bean) { return create(null).parseBean(bean, true, true); } // --------------------------------------------------------------- Static method end // -------------------------------------------------------------------------- Constructor start /** * 构造 */ public ActiveEntity() { this(Db.use(), (String) null); } /** * 构造 * * @param tableName 表名 */ public ActiveEntity(String tableName) { this(Db.use(), tableName); } /** * 构造 * * @param entity 非动态实体 */ public ActiveEntity(Entity entity) { this(Db.use(), entity); } /** * 构造 * * @param db {@link Db} * @param tableName 表名 */ public ActiveEntity(Db db, String tableName) { super(tableName); this.db = db; } /** * 构造 * * @param db {@link Db} * @param entity 非动态实体 */ public ActiveEntity(Db db, Entity entity) { super(entity.getTableName()); this.putAll(entity); this.db = db; } // -------------------------------------------------------------------------- Constructor end @Override public ActiveEntity setTableName(String tableName) { return (ActiveEntity) super.setTableName(tableName); } @Override public ActiveEntity setFieldNames(Collection fieldNames) { return (ActiveEntity) super.setFieldNames(fieldNames); } @Override public ActiveEntity setFieldNames(String... fieldNames) { return (ActiveEntity) super.setFieldNames(fieldNames); } /** * 通过lambda批量设置值 * @param fields lambda,不能为空 * @return this */ @Override public ActiveEntity setFields(Func0... fields) { return (ActiveEntity) super.setFields(fields); } @Override public ActiveEntity addFieldNames(String... fieldNames) { return (ActiveEntity) super.addFieldNames(fieldNames); } @Override public ActiveEntity parseBean(T bean) { return (ActiveEntity) super.parseBean(bean); } @Override public ActiveEntity parseBean(T bean, boolean isToUnderlineCase, boolean ignoreNullValue) { return (ActiveEntity) super.parseBean(bean, isToUnderlineCase, ignoreNullValue); } @Override public ActiveEntity set(String field, Object value) { return (ActiveEntity) super.set(field, value); } @Override public ActiveEntity setIgnoreNull(String field, Object value) { return (ActiveEntity) super.setIgnoreNull(field, value); } @Override public ActiveEntity clone() { return (ActiveEntity) super.clone(); } // -------------------------------------------------------------------------- CRUD start /** * 根据Entity中现有字段条件从数据库中增加一条数据 * * @return this */ public ActiveEntity add() { try { db.insert(this); } catch (SQLException e) { throw new DbRuntimeException(e); } return this; } /** * 根据Entity中现有字段条件从数据库中加载一个Entity对象 * * @return this */ public ActiveEntity load() { try { final Entity result = db.get(this); if(MapUtil.isNotEmpty(result)) { this.putAll(result); } } catch (SQLException e) { throw new DbRuntimeException(e); } return this; } /** * 根据现有Entity中的条件删除与之匹配的数据库记录 * * @return this */ public ActiveEntity del() { try { db.del(this); } catch (SQLException e) { throw new DbRuntimeException(e); } return this; } /** * 根据现有Entity中的条件删除与之匹配的数据库记录 * * @param primaryKey 主键名 * @return this */ public ActiveEntity update(String primaryKey) { try { db.update(this, Entity.create().set(primaryKey, this.get(primaryKey))); } catch (SQLException e) { throw new DbRuntimeException(e); } return this; } // -------------------------------------------------------------------------- CRUD end }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy