B C D F G I M P R S T U
B
- batchDelete(List<T>, int) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
批量删除
- batchInsert(List<T>, int) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
批量插入
- batchUpdate(List<T>, int) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
批量更新
C
- cloud.agileframework.jpa.config - 程序包 cloud.agileframework.jpa.config
-
- cloud.agileframework.jpa.dao - 程序包 cloud.agileframework.jpa.dao
-
描述:持久层工具包
创建时间:2018/11/28
- contains(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- count(Class<?>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
查询指定tableClass对应表的总数
D
- dao(DataSourceProperties) - 类 中的方法cloud.agileframework.jpa.config.DaoAutoConfiguration
-
- Dao - cloud.agileframework.jpa.dao中的类
-
- Dao(DbType) - 类 的构造器cloud.agileframework.jpa.dao.Dao
-
- DaoAutoConfiguration - cloud.agileframework.jpa.config中的类
-
- DaoAutoConfiguration() - 类 的构造器cloud.agileframework.jpa.config.DaoAutoConfiguration
-
- defaultDictionaryManager() - 类 中的方法cloud.agileframework.jpa.config.DaoAutoConfiguration
-
- delete(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- deleteAllInBatch(Class<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
删除全部(一次性删除)
- dictionaryManager() - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
F
- findAll(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
按照例子查询多条
- findAll(T, Sort) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- findAll(T, ExampleMatcher, Sort) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
按照例子查询多条/排序
- findAllByArrayId(Class<T>, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
根据实体类型tableClass与主键值集合ids,查询实体列表
- findAllByClass(Class<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
指定tableClass对应表的全表查询
- findAllByClass(Class<T>, Sort) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
指定tableClass对应表的全表查询,并排序
- findBySQL(String, Class<T>, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- findBySQL(String, Class<T>, Integer, Integer, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
根据sql语句查询指定类型clazz列表
- findBySQL(String, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
根据sql语句查询列表,结果类型为List
- findOne(Class<T>, Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
根据主键,查询单条
- findOne(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
按照例子查询单条
- findOne(T, ExampleMatcher) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
按照例子查询单条
- findOne(String, Class<T>, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
根据sql查询出单条数据,并映射成指定clazz类型
- flush(Class<?>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
刷新数据库中指定tableClass类型实体对应的表
- flush() - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
刷新数据库中全部表
G
- generate(SharedSessionContractImplementor, Object) - 类 中的方法cloud.agileframework.jpa.dao.IDGenerator
-
- generate(SharedSessionContractImplementor, Object) - 类 中的方法cloud.agileframework.jpa.dao.IDGeneratorToString
-
- generate(SharedSessionContractImplementor, Object) - 类 中的方法cloud.agileframework.jpa.dao.IDGeneratorToUUID
-
- getConnection() - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
获取数据库连接
- getEntityManager() - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
获取EntityManager,操作jpa api的入口
- getEntityType(String) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- getId(Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- getIdField(Class<?>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
获取ORM中的主键字段
- getIdType(Class<?>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
根据ORM类型取主键类型
- getRepository(Class<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
根据java类型获取对应的数据库表的JpaRepository对象
I
- IDGenerator - cloud.agileframework.jpa.dao中的类
-
- IDGenerator() - 类 的构造器cloud.agileframework.jpa.dao.IDGenerator
-
- IDGeneratorToString - cloud.agileframework.jpa.dao中的类
-
- IDGeneratorToString() - 类 的构造器cloud.agileframework.jpa.dao.IDGeneratorToString
-
- IDGeneratorToUUID - cloud.agileframework.jpa.dao中的类
-
- IDGeneratorToUUID() - 类 的构造器cloud.agileframework.jpa.dao.IDGeneratorToUUID
-
M
- memoryPage(List<T>, int, int, SortInfo...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
内存分页
P
- page(T, int, int) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
按照例子查询多条分页
- page(T, ExampleMatcher, int, int) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
按照例子查询多条分页
- page(T, int, int, Sort) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
按照例子对象查询多条分页
- page(T, ExampleMatcher, PageRequest) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- page(T, PageRequest) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- pageByClass(Class<T>, int, int) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
查询指定tableClass对应表的全表分页
- pageByClass(Class<T>, PageRequest) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
查询指定tableClass对应表的全表分页
- pageBySQL(String, int, int, Class<T>, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- pageBySQL(String, PageRequest, Class<T>, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
分页查询
R
- refresh(Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
刷新数据库数据到实体类当中
S
- save(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
保存
- saveAndReturn(T, boolean) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
保存并刷新
- saveOrUpdate(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
保存或更新
- setId(Object, Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
T
- toColumnNames(Class<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
- toIdType(Class<?>, Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
把id转换为clazz实体的主键类型
- toTableName(Class<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
U
- update(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
更新或新增
- updateBySQL(String, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
sql形式写操作
- updateOfNotNull(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
-
更新或新增非空字段,空字段不进行更新
B C D F G I M P R S T U
Copyright © 2022. All rights reserved.