跳过导航链接
A C D E F G I J M P R S U 

A

afterPropertiesSet() - 类 中的方法cloud.agileframework.jpa.config.DruidExtendAutoConfiguration
 

C

cloud.agileframework.jpa.config - 程序包 cloud.agileframework.jpa.config
 
cloud.agileframework.jpa.dao - 程序包 cloud.agileframework.jpa.dao
描述:持久层工具包 创建时间:2018/11/28
cloud.agileframework.jpa.dictionary - 程序包 cloud.agileframework.jpa.dictionary
 
contains(Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
 
count(Class<?>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
查询指定tableClass对应表的总数
cover(Object) - 接口 中的方法cloud.agileframework.jpa.dictionary.DataExtendManager
字典转换工具
cover(Object) - 类 中的方法cloud.agileframework.jpa.dictionary.JpaDictionaryManager
 

D

dao() - 类 中的方法cloud.agileframework.jpa.config.DaoAutoConfiguration
 
Dao - cloud.agileframework.jpa.dao中的类
 
Dao() - 类 的构造器cloud.agileframework.jpa.dao.Dao
 
DaoAutoConfiguration - cloud.agileframework.jpa.config中的类
 
DaoAutoConfiguration() - 类 的构造器cloud.agileframework.jpa.config.DaoAutoConfiguration
 
DataExtendManager - cloud.agileframework.jpa.dictionary中的接口
 
defaultDictionaryManager() - 类 中的方法cloud.agileframework.jpa.config.DaoAutoConfiguration
 
delete(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
根据提供的对象参数,作为例子,查询出结果并删除
deleteAll(Class<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
删除全部(逐一删除)
deleteAllInBatch(Class<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
删除全部(一次性删除)
deleteById(Class<T>, Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
删除
deleteInBatch(Class<T>, Object[]) - 类 中的方法cloud.agileframework.jpa.dao.Dao
根据主键与实体类型,部分删除,删除对象集(一次性删除)
deleteInBatch(Class<T>, Iterable<?>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
 
deleteInBatch(Iterable<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
根据表映射类型的对象集合,部分删除,删除对象集(一次性删除),无返回值
DictionaryAutoConfiguration - cloud.agileframework.jpa.config中的类
 
DictionaryAutoConfiguration() - 类 的构造器cloud.agileframework.jpa.config.DictionaryAutoConfiguration
 
DruidExtendAutoConfiguration - cloud.agileframework.jpa.config中的类
 
DruidExtendAutoConfiguration() - 类 的构造器cloud.agileframework.jpa.config.DruidExtendAutoConfiguration
 

E

existsById(Class<?>, Object) - 类 中的方法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对应表的全表查询,并排序
findAllById(Class<T>, Iterable<?>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
根据实体类型tableClass与主键值集合ids,查询实体列表
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
 
getConnection() - 类 中的方法cloud.agileframework.jpa.dao.Dao
获取数据库连接
getEntityManager() - 类 中的方法cloud.agileframework.jpa.dao.Dao
获取EntityManager,操作jpa api的入口
getId(Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
 
getRepository(Class<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
根据java类型获取对应的数据库表的JpaRepository对象

I

IDGenerator - cloud.agileframework.jpa.dao中的类
 
IDGenerator() - 类 的构造器cloud.agileframework.jpa.dao.IDGenerator
 

J

JpaDictionaryManager - cloud.agileframework.jpa.dictionary中的类
 
JpaDictionaryManager() - 类 的构造器cloud.agileframework.jpa.dictionary.JpaDictionaryManager
 

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对应表的全表分页
pageBySQL(String, int, int, Class<T>, Object...) - 类 中的方法cloud.agileframework.jpa.dao.Dao
分页查询

R

refresh(Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
刷新数据库数据到实体类当中

S

save(Object) - 类 中的方法cloud.agileframework.jpa.dao.Dao
保存
save(Iterable<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
批量保存
saveAndReturn(T, boolean) - 类 中的方法cloud.agileframework.jpa.dao.Dao
保存并刷新
saveAndReturn(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
保存
saveAndReturn(Iterable<T>) - 类 中的方法cloud.agileframework.jpa.dao.Dao
批量保存
saveOrUpdate(T) - 类 中的方法cloud.agileframework.jpa.dao.Dao
保存或更新
setId(Object, Object) - 类 中的方法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
更新或新增非空字段,空字段不进行更新
A C D E F G I J M P R S U 
跳过导航链接

Copyright © 2021. All rights reserved.