- DatabaseMigration - com.centit.framework.system.update中的类
-
- DatabaseMigration() - 类 的构造器com.centit.framework.system.update.DatabaseMigration
-
- DatabaseOptUtils - com.centit.framework.hibernate.dao中的类
-
意图将BaseDao中公共的部分独立出来,减少类的函数数量,
因为每一个继承BaseDaoImpl的类都有这些函数,而这些行数基本上都是一样的
- DDLOperationsWork - com.centit.framework.hibernate.dao中的类
-
- DDLOperationsWork() - 类 的构造器com.centit.framework.hibernate.dao.DDLOperationsWork
-
- DDLOperationsWork(BaseDaoImpl<?, ?>) - 类 的构造器com.centit.framework.hibernate.dao.DDLOperationsWork
-
- deepCopy(Object) - 类 中的方法com.centit.framework.hibernate.common.ObjectSerializeUserType
-
提供自定义类型的完全复制方法
本方法将用构造返回对象
当nullSafeGet方法调用之后,我们获得了自定义数据对象,在向用户返回自定义数据之前,
deepCopy方法将被调用,它将根据自定义数据对象构造一个完全拷贝,并将此拷贝返回给用户
此时我们就得到了自定义数据对象的两个版本,第一个是从数据库读出的原始版本,其二是我们通过
deepCopy方法构造的复制版本,原始的版本将有Hibernate维护,复制版由用户使用。
- deleteBatchObject(BaseDaoImpl<?, ?>, Collection<? extends Object>) - 类 中的静态方法com.centit.framework.hibernate.dao.DatabaseOptUtils
-
批量删除任意对象,hibernate 托管的对象
- deleteObject(T) - 接口 中的方法com.centit.framework.hibernate.dao.BaseDao
-
- deleteObject(T) - 类 中的方法com.centit.framework.hibernate.dao.BaseDaoImpl
-
- deleteObject(T) - 接口 中的方法com.centit.framework.hibernate.service.BaseEntityManager
-
删除泛型参数对象
- deleteObject(T) - 类 中的方法com.centit.framework.hibernate.service.BaseEntityManagerImpl
-
- deleteObjectById(PK) - 接口 中的方法com.centit.framework.hibernate.dao.BaseDao
-
- deleteObjectById(PK) - 类 中的方法com.centit.framework.hibernate.dao.BaseDaoImpl
-
- deleteObjectById(Object) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- deleteObjectById(Map<String, Object>) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- deleteObjectById(PK) - 接口 中的方法com.centit.framework.hibernate.service.BaseEntityManager
-
根据主键删除泛型参数对象
- deleteObjectById(PK) - 类 中的方法com.centit.framework.hibernate.service.BaseEntityManagerImpl
-
- deleteObjectForce(T) - 接口 中的方法com.centit.framework.hibernate.dao.BaseDao
-
- deleteObjectForce(T) - 类 中的方法com.centit.framework.hibernate.dao.BaseDaoImpl
-
- deleteObjectForceById(PK) - 接口 中的方法com.centit.framework.hibernate.dao.BaseDao
-
- deleteObjectForceById(PK) - 类 中的方法com.centit.framework.hibernate.dao.BaseDaoImpl
-
- deleteObjects(JSONArray) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- deleteObjectsAsTabulation(Collection<T>) - 接口 中的方法com.centit.framework.hibernate.dao.BaseDao
-
批量删除记录
- deleteObjectsAsTabulation(String, Object) - 接口 中的方法com.centit.framework.hibernate.dao.BaseDao
-
批量删除记录 根据单独外键查询
- deleteObjectsAsTabulation(Map<String, Object>) - 接口 中的方法com.centit.framework.hibernate.dao.BaseDao
-
批量删除记录 根据复合外键查询
- deleteObjectsAsTabulation(Collection<T>) - 类 中的方法com.centit.framework.hibernate.dao.BaseDaoImpl
-
批量删除记录
- deleteObjectsAsTabulation(String, Object) - 类 中的方法com.centit.framework.hibernate.dao.BaseDaoImpl
-
批量删除记录 根据单独外键查询
- deleteObjectsAsTabulation(Map<String, Object>) - 类 中的方法com.centit.framework.hibernate.dao.BaseDaoImpl
-
批量删除记录 根据复合外键查询
- deleteObjectsAsTabulation(String, Object) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- deleteObjectsAsTabulation(Map<String, Object>) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- deleteObjectsByProperties(Map<String, Object>) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- disassemble(Object) - 类 中的方法com.centit.framework.hibernate.common.ObjectSerializeUserType
-
- doExecuteHql(BaseDaoImpl<?, ?>, String) - 类 中的静态方法com.centit.framework.hibernate.dao.DatabaseOptUtils
-
直接运行 HQL,update delete insert
- doExecuteHql(BaseDaoImpl<?, ?>, String, Object) - 类 中的静态方法com.centit.framework.hibernate.dao.DatabaseOptUtils
-
直接运行带参数的 HQL,update delete insert
- doExecuteHql(BaseDaoImpl<?, ?>, String, Object[]) - 类 中的静态方法com.centit.framework.hibernate.dao.DatabaseOptUtils
-
直接运行带参数的 HQL,update delete insert
- doExecuteHql(BaseDaoImpl<?, ?>, String, Map<String, Object>) - 类 中的静态方法com.centit.framework.hibernate.dao.DatabaseOptUtils
-
直接运行行带参数的 HQL,update delete insert
- doExecuteNamedSql(String, Map<String, Object>) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- doExecuteSql(BaseDaoImpl<?, ?>, String) - 类 中的静态方法com.centit.framework.hibernate.dao.DatabaseOptUtils
-
直接运行SQL,update delete insert
- doExecuteSql(BaseDaoImpl<?, ?>, String, Object[]) - 类 中的静态方法com.centit.framework.hibernate.dao.DatabaseOptUtils
-
直接运行行带参数的 SQL,update delete insert
- doExecuteSql(BaseDaoImpl<?, ?>, String, Map<String, Object>) - 类 中的静态方法com.centit.framework.hibernate.dao.DatabaseOptUtils
-
直接运行行带参数的 SQL,update delete insert
- doExecuteSql(String) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- doExecuteSql(String, Object[]) - 类 中的方法com.centit.framework.hibernate.dao.JsonObjectWork
-
- dropColumn(String, String) - 类 中的方法com.centit.framework.hibernate.dao.DDLOperationsWork
-
- dropTable(String) - 类 中的方法com.centit.framework.hibernate.dao.DDLOperationsWork
-