跳过导航链接
A B C D E F G H I J M N O P Q R S T U V 

A

add(Flux<E>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveSaveController
 
add(Mono<E>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveSaveController
 
add(Flux<E>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceSaveController
 
add(Mono<E>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceSaveController
 
addCopier(PropertyCopier) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
addCopier(Class<S>, Class<T>, PropertyCopier<S, T>) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
addListener(EventListener) - 类 中的方法org.hswebframework.web.crud.events.CompositeEventListener
 
addMapping(Class<T>, MapperEntityFactory.Mapper<? extends T>) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
addParser(EntityTableMetadataParser) - 类 中的方法org.hswebframework.web.crud.configuration.CompositeEntityTableMetadataResolver
 
afterPropertiesSet() - 类 中的方法org.hswebframework.web.crud.configuration.AutoDDLProcessor
 
applyAuthentication(E, Authentication) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveSaveController
 
applyAuthentication(E, Authentication) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceSaveController
 
applyCreationEntity(Authentication, E) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveSaveController
 
applyCreationEntity(Authentication, E) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceSaveController
 
applyModifierEntity(Authentication, E) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveSaveController
 
applyModifierEntity(Authentication, E) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceSaveController
 
applyTreeProperty(E) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
AutoDDLProcessor - org.hswebframework.web.crud.configuration中的类
 
AutoDDLProcessor() - 类 的构造器org.hswebframework.web.crud.configuration.AutoDDLProcessor
 
autoRegisterFeature(RDBDatabaseMetadata) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 

B

bind(Statement, int, Object) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
bindNull(Statement, int, Class) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 

C

cache - 类 中的变量org.hswebframework.web.crud.service.GenericReactiveCacheSupportCrudService
 
checkCyclicDependency(K, E) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
code - 类 中的变量org.hswebframework.web.crud.web.ResponseMessage
 
CommonErrorControllerAdvice - org.hswebframework.web.crud.web中的类
 
CommonErrorControllerAdvice() - 类 的构造器org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
commonErrorControllerAdvice() - 类 中的方法org.hswebframework.web.crud.web.CommonWebFluxConfiguration
 
CommonWebFluxConfiguration - org.hswebframework.web.crud.web中的类
 
CommonWebFluxConfiguration() - 类 的构造器org.hswebframework.web.crud.web.CommonWebFluxConfiguration
 
CompositeEntityTableMetadataResolver - org.hswebframework.web.crud.configuration中的类
 
CompositeEntityTableMetadataResolver() - 类 的构造器org.hswebframework.web.crud.configuration.CompositeEntityTableMetadataResolver
 
CompositeEventListener - org.hswebframework.web.crud.events中的类
 
CompositeEventListener() - 类 的构造器org.hswebframework.web.crud.events.CompositeEventListener
 
convertRequest(SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
copyProperties(S, T) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
copyProperties(S, T) - 接口 中的方法org.hswebframework.web.crud.entity.factory.PropertyCopier
 
count(QueryParam) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
count(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
count(Mono<? extends QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
count(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveQueryController
 
count(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveQueryController
统计查询 GET /_count
count(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceQueryController
 
count(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceQueryController
统计查询 GET /_count
createDatabaseMetadata() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormProperties
 
createDelete() - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
createDelete() - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
createDelete() - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
创建一个DSL动态删除接口,可使用DSL方式进行链式调用来构造动态删除条件.例如: Mono<Integer> flux= service .createDelete() .where(MyEntity::getName,name) .in(MyEntity::getState,state1,state2) .execute()
createDialect() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormProperties
 
createQuery() - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
createQuery() - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
创建一个DSL的动态查询接口,可使用DSL方式进行链式调用来构造动态查询条件.例如: Flux<MyEntity> flux= service .createQuery() .where(MyEntity::getName,name) .in(MyEntity::getState,state1,state2) .fetch()
createRootNodePredicate(TreeSupportEntity.TreeHelper<E, K>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
createSchema(String) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormProperties
 
createSchema(String) - 枚举 中的方法org.hswebframework.web.crud.configuration.EasyormProperties.DialectEnum
 
createUpdate() - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
createUpdate() - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
createUpdate() - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
创建一个DSL动态更新接口,可使用DSL方式进行链式调用来构造动态更新条件.例如: Mono<Integer> flux= service .createUpdate() .set(entity::getState) .where(MyEntity::getName,name) .in(MyEntity::getState,state1,state2) .execute()
CrudService<E,K> - org.hswebframework.web.crud.service中的接口
 
CURRENT_TIME - 接口 中的静态变量org.hswebframework.web.crud.generator.Generators
 
currentTimeGenerator() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
CurrentTimeGenerator - org.hswebframework.web.crud.generator中的类
 
CurrentTimeGenerator() - 类 的构造器org.hswebframework.web.crud.generator.CurrentTimeGenerator
 

D

databaseMetadata(Optional<SyncSqlExecutor>, Optional<ReactiveSqlExecutor>) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
databaseOperator(RDBDatabaseMetadata) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
DEFAULT_ID_GENERATOR - 接口 中的静态变量org.hswebframework.web.crud.generator.Generators
 
DefaultEntityResultWrapperFactory - org.hswebframework.web.crud.configuration中的类
 
DefaultEntityResultWrapperFactory() - 类 的构造器org.hswebframework.web.crud.configuration.DefaultEntityResultWrapperFactory
 
defaultEntityResultWrapperFactory(EntityManager) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
defaultIdGenerator() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
DefaultIdGenerator - org.hswebframework.web.crud.generator中的类
 
DefaultIdGenerator() - 类 的构造器org.hswebframework.web.crud.generator.DefaultIdGenerator
 
defaultInstanceGetter(Class<T>) - 类 中的静态方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
DefaultJdbcExecutor - org.hswebframework.web.crud.sql中的类
 
DefaultJdbcExecutor() - 类 的构造器org.hswebframework.web.crud.sql.DefaultJdbcExecutor
 
DefaultJdbcReactiveExecutor - org.hswebframework.web.crud.sql中的类
 
DefaultJdbcReactiveExecutor() - 类 的构造器org.hswebframework.web.crud.sql.DefaultJdbcReactiveExecutor
 
defaultMapper(Class<T>) - 类 中的静态方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
DefaultMapperFactory - org.hswebframework.web.crud.entity.factory中的接口
默认的实体映射
DefaultPropertyCopier - org.hswebframework.web.crud.entity.factory中的接口
默认的属性复制器
DefaultR2dbcExecutor - org.hswebframework.web.crud.sql中的类
 
DefaultR2dbcExecutor() - 类 的构造器org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
delete(K) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveDeleteController
 
delete(K) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceDeleteController
 
deleteById(Collection<K>) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
deleteById(Publisher<K>) - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
deleteById(Publisher<K>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
deleteById(Publisher<K>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 

E

EasyormConfiguration - org.hswebframework.web.crud.configuration中的类
 
EasyormConfiguration() - 类 的构造器org.hswebframework.web.crud.configuration.EasyormConfiguration
 
EasyormProperties - org.hswebframework.web.crud.configuration中的类
 
EasyormProperties() - 类 的构造器org.hswebframework.web.crud.configuration.EasyormProperties
 
EasyormProperties.DialectEnum - org.hswebframework.web.crud.configuration中的枚举
 
EasyormRepositoryRegistrar - org.hswebframework.web.crud.configuration中的类
 
EasyormRepositoryRegistrar() - 类 的构造器org.hswebframework.web.crud.configuration.EasyormRepositoryRegistrar
 
EnableCacheReactiveCrudService<E,K> - org.hswebframework.web.crud.service中的接口
 
EnableEasyormRepository - org.hswebframework.web.crud.annotation中的注释类型
 
EnableEntityEvent - org.hswebframework.web.crud.annotation中的注释类型
在实体类上添加此注解,表示开启实体操作事件,当实体类发生类修改,更新,删除等操作时,会触发事件。
EntityCreatedEvent<E> - org.hswebframework.web.crud.events中的类
 
EntityCreatedEvent() - 类 的构造器org.hswebframework.web.crud.events.EntityCreatedEvent
 
EntityDeletedEvent<E> - org.hswebframework.web.crud.events中的类
 
EntityDeletedEvent() - 类 的构造器org.hswebframework.web.crud.events.EntityDeletedEvent
 
entityEventListener() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
EntityEventListener - org.hswebframework.web.crud.events中的类
 
EntityEventListener() - 类 的构造器org.hswebframework.web.crud.events.EntityEventListener
 
entityFactory() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
EntityInfo - org.hswebframework.web.crud.configuration中的类
 
EntityInfo() - 类 的构造器org.hswebframework.web.crud.configuration.EntityInfo
 
entityManager(EntityTableMetadataResolver, EntityFactory) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
EntityModifyEvent<E> - org.hswebframework.web.crud.events中的类
 
EntityModifyEvent() - 类 的构造器org.hswebframework.web.crud.events.EntityModifyEvent
 
EntityResultWrapperFactory - org.hswebframework.web.crud.configuration中的接口
 
EntitySavedEvent<E> - org.hswebframework.web.crud.events中的类
 
EntitySavedEvent() - 类 的构造器org.hswebframework.web.crud.events.EntitySavedEvent
 
entityTableMappingResolver(List<EntityTableMetadataParser>) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
EntityTableMetadataResolver - org.hswebframework.web.crud.configuration中的接口
 
error(String) - 类 中的静态方法org.hswebframework.web.crud.web.ResponseMessage
 
error(String, String) - 类 中的静态方法org.hswebframework.web.crud.web.ResponseMessage
 
error(int, String, String) - 类 中的静态方法org.hswebframework.web.crud.web.ResponseMessage
 
execute(SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultJdbcExecutor
 
execute(SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
execute(Publisher<SqlRequest>) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 

F

findAllChildren(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveTreeServiceQueryController
 
findAllChildren(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveTreeServiceQueryController
 
findAllChildrenTree(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveTreeServiceQueryController
 
findAllChildrenTree(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveTreeServiceQueryController
 
findAllTree(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveTreeServiceQueryController
 
findAllTree(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveTreeServiceQueryController
 
findById(K) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
findById(Collection<K>) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
findById(K) - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
findById(Mono<K>) - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
findById(K) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
findById(Collection<K>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
findById(Mono<K>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
findById(Flux<K>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 

G

generate(RDBColumnMetadata) - 类 中的方法org.hswebframework.web.crud.generator.CurrentTimeGenerator
 
generate(RDBColumnMetadata) - 类 中的方法org.hswebframework.web.crud.generator.DefaultIdGenerator
 
generate(RDBColumnMetadata) - 类 中的方法org.hswebframework.web.crud.generator.MD5Generator
 
generate(RDBColumnMetadata) - 类 中的方法org.hswebframework.web.crud.generator.SnowFlakeStringIdGenerator
 
Generators - org.hswebframework.web.crud.generator中的接口
 
generic(Class) - 类 中的方法org.hswebframework.web.crud.generator.CurrentTimeGenerator
 
GenericCrudService<E,K> - org.hswebframework.web.crud.service中的类
 
GenericCrudService() - 类 的构造器org.hswebframework.web.crud.service.GenericCrudService
 
GenericReactiveCacheSupportCrudService<E,K> - org.hswebframework.web.crud.service中的类
 
GenericReactiveCacheSupportCrudService() - 类 的构造器org.hswebframework.web.crud.service.GenericReactiveCacheSupportCrudService
 
GenericReactiveCrudService<E,K> - org.hswebframework.web.crud.service中的类
 
GenericReactiveCrudService() - 类 的构造器org.hswebframework.web.crud.service.GenericReactiveCrudService
 
GenericReactiveTreeSupportCrudService<E extends TreeSortSupportEntity<K>,K> - org.hswebframework.web.crud.service中的类
 
GenericReactiveTreeSupportCrudService() - 类 的构造器org.hswebframework.web.crud.service.GenericReactiveTreeSupportCrudService
 
getBindSymbol() - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
getById(K) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveQueryController
 
getById(K) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceQueryController
 
getCache() - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
getCache() - 类 中的方法org.hswebframework.web.crud.service.GenericReactiveCacheSupportCrudService
 
getCacheName() - 类 中的方法org.hswebframework.web.crud.service.GenericReactiveCacheSupportCrudService
 
getChildren(E) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
getConnection(SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultJdbcExecutor
 
getConnection(SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultJdbcReactiveExecutor
 
getConnection() - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
getDatasourceId() - 类 中的方法org.hswebframework.web.crud.sql.DefaultJdbcExecutor
 
getId() - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
getId() - 类 中的方法org.hswebframework.web.crud.events.ValidateEventListener
 
getIDGenerator() - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
getInstanceGetter() - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory.Mapper
 
getInstanceType(Class<T>, boolean) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
getName() - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
getName() - 类 中的方法org.hswebframework.web.crud.events.ValidateEventListener
 
getName() - 类 中的方法org.hswebframework.web.crud.generator.CurrentTimeGenerator
 
getName() - 类 中的方法org.hswebframework.web.crud.generator.DefaultIdGenerator
 
getName() - 类 中的方法org.hswebframework.web.crud.generator.MD5Generator
 
getName() - 类 中的方法org.hswebframework.web.crud.generator.SnowFlakeStringIdGenerator
 
getObject() - 类 中的方法org.hswebframework.web.crud.configuration.ReactiveRepositoryFactoryBean
 
getObject() - 类 中的方法org.hswebframework.web.crud.configuration.SyncRepositoryFactoryBean
 
getObjectType() - 类 中的方法org.hswebframework.web.crud.configuration.ReactiveRepositoryFactoryBean
 
getObjectType() - 类 中的方法org.hswebframework.web.crud.configuration.SyncRepositoryFactoryBean
 
getRepository() - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
getRepository() - 类 中的方法org.hswebframework.web.crud.service.GenericCrudService
 
getRepository() - 类 中的方法org.hswebframework.web.crud.service.GenericReactiveCacheSupportCrudService
 
getRepository() - 类 中的方法org.hswebframework.web.crud.service.GenericReactiveCrudService
 
getRepository() - 类 中的方法org.hswebframework.web.crud.service.GenericReactiveTreeSupportCrudService
 
getRepository() - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
getRepository() - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveDeleteController
 
getRepository() - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveQueryController
 
getRepository() - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveSaveController
 
getService() - 接口 中的方法org.hswebframework.web.crud.web.QueryController
 
getService() - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceDeleteController
 
getService() - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceQueryController
 
getService() - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceSaveController
 
getService() - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveTreeServiceQueryController
 
getSortId() - 类 中的方法org.hswebframework.web.crud.generator.CurrentTimeGenerator
 
getSortId() - 类 中的方法org.hswebframework.web.crud.generator.DefaultIdGenerator
 
getSortId() - 类 中的方法org.hswebframework.web.crud.generator.MD5Generator
 
getSortId() - 类 中的方法org.hswebframework.web.crud.generator.SnowFlakeStringIdGenerator
 
getTarget() - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory.Mapper
 
getWrapper(Class<T>) - 类 中的方法org.hswebframework.web.crud.configuration.DefaultEntityResultWrapperFactory
 
getWrapper(Class<T>) - 接口 中的方法org.hswebframework.web.crud.configuration.EntityResultWrapperFactory
 

H

handleBatchOperation(Class, EventContext, BiFunction<List<?>, Class, AsyncEvent>) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
handleDeleteBefore(EventContext) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
handleException(BusinessException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(UnsupportedOperationException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(UnAuthorizedException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(AccessDenyException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(NotFoundException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(ValidationException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(ConstraintViolationException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(BindException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(WebExchangeBindException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(MethodArgumentNotValidException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(ValidationException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(TimeoutException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(RuntimeException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(NullPointerException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(IllegalArgumentException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(AuthenticationException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(MediaTypeNotSupportedStatusException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(NotAcceptableStatusException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(MethodNotAllowedException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(R2dbcDataIntegrityViolationException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleException(ServerWebInputException) - 类 中的方法org.hswebframework.web.crud.web.CommonErrorControllerAdvice
 
handleResult(ServerWebExchange, HandlerResult) - 类 中的方法org.hswebframework.web.crud.web.ResponseMessageWrapper
 
handleSingleOperation(Class, EventContext, BiFunction<List<?>, Class, AsyncEvent>) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
handleUpdateAfter(EventContext) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
handleUpdateBefore(DSLUpdate<?, ?>, EventContext) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
handleUpdateBefore(EventContext) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 

I

initCache(Class<T>) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
insert(Collection<E>) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
insert(E) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
insert(Publisher<E>) - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
insert(Publisher<E>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
insert(Publisher<E>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
insertBatch(Publisher<? extends Collection<E>>) - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
insertBatch(Publisher<? extends Collection<E>>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
insertBatch(Publisher<? extends Collection<E>>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
isRootNode(E) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
isSingleton() - 类 中的方法org.hswebframework.web.crud.configuration.ReactiveRepositoryFactoryBean
 
isSingleton() - 类 中的方法org.hswebframework.web.crud.configuration.SyncRepositoryFactoryBean
 

J

JdbcSqlExecutorConfiguration - org.hswebframework.web.crud.configuration中的类
 
JdbcSqlExecutorConfiguration() - 类 的构造器org.hswebframework.web.crud.configuration.JdbcSqlExecutorConfiguration
 
jpaEntityTableMetadataParser(RDBDatabaseMetadata) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 

M

Mapper(Class<T>, Supplier<T>) - 类 的构造器org.hswebframework.web.crud.entity.factory.MapperEntityFactory.Mapper
 
MapperEntityFactory - org.hswebframework.web.crud.entity.factory中的类
 
MapperEntityFactory() - 类 的构造器org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
MapperEntityFactory(Map<Class<?>, MapperEntityFactory.Mapper>) - 类 的构造器org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
MapperEntityFactory.Mapper<T> - org.hswebframework.web.crud.entity.factory中的类
 
MD5 - 接口 中的静态变量org.hswebframework.web.crud.generator.Generators
 
md5Generator() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
MD5Generator - org.hswebframework.web.crud.generator中的类
 
MD5Generator() - 类 的构造器org.hswebframework.web.crud.generator.MD5Generator
 
message - 类 中的变量org.hswebframework.web.crud.web.ResponseMessage
 

N

newInstance(Class<T>) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
newInstance(Class<T>, Class<? extends T>) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 

O

ok() - 类 中的静态方法org.hswebframework.web.crud.web.ResponseMessage
 
ok(T) - 类 中的静态方法org.hswebframework.web.crud.web.ResponseMessage
 
onEvent(EventType, EventContext) - 类 中的方法org.hswebframework.web.crud.events.CompositeEventListener
 
onEvent(EventType, EventContext) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
onEvent(EventType, EventContext) - 类 中的方法org.hswebframework.web.crud.events.ValidateEventListener
 
org.hswebframework.web.crud.annotation - 程序包 org.hswebframework.web.crud.annotation
 
org.hswebframework.web.crud.configuration - 程序包 org.hswebframework.web.crud.configuration
 
org.hswebframework.web.crud.entity.factory - 程序包 org.hswebframework.web.crud.entity.factory
 
org.hswebframework.web.crud.events - 程序包 org.hswebframework.web.crud.events
 
org.hswebframework.web.crud.generator - 程序包 org.hswebframework.web.crud.generator
 
org.hswebframework.web.crud.service - 程序包 org.hswebframework.web.crud.service
 
org.hswebframework.web.crud.sql - 程序包 org.hswebframework.web.crud.sql
 
org.hswebframework.web.crud.web - 程序包 org.hswebframework.web.crud.web
 
org.hswebframework.web.crud.web.reactive - 程序包 org.hswebframework.web.crud.web.reactive
 

P

PropertyCopier<S,T> - org.hswebframework.web.crud.entity.factory中的接口
属性复制接口,用于自定义属性复制

Q

query(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
query(Mono<? extends QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
query(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
query(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveQueryController
查询,但是不返回分页结果.
query(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveQueryController
POST方式查询.不返回分页结果 POST /_query/no-paging { "pageIndex":0, "pageSize":20, "where":"name like 张%", //放心使用,没有SQL注入 "orderBy":"id desc", "terms":[ //高级条件 { "column":"name", "termType":"like", "value":"张%" } ] }
query(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceQueryController
查询,但是不返回分页结果.
query(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceQueryController
POST方式查询.不返回分页结果 POST /_query/no-paging { "pageIndex":0, "pageSize":20, "where":"name like 张%", //放心使用,没有SQL注入 "orderBy":"id desc", "terms":[ //高级条件 { "column":"name", "termType":"like", "value":"张%" } ] }
QueryController<E,K> - org.hswebframework.web.crud.web中的接口
 
queryIncludeChildren(Collection<K>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
queryIncludeChildren(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
queryIncludeChildrenTree(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
queryPager(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
queryPager(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
queryPager(QueryParamEntity, Function<E, T>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
queryPager(Mono<? extends QueryParamEntity>, Function<E, T>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
queryPager(Mono<? extends QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
queryPager(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveQueryController
GET方式分页查询 GET /_query/no-paging?
queryPager(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveQueryController
 
queryPager(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceQueryController
GET方式分页查询 GET /_query/no-paging?
queryPager(Mono<QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceQueryController
 
queryResultToTree(Mono<? extends QueryParamEntity>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
queryResultToTree(QueryParamEntity) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 

R

R2dbcSqlExecutorConfiguration - org.hswebframework.web.crud.configuration中的类
 
R2dbcSqlExecutorConfiguration() - 类 的构造器org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration
 
Reactive - org.hswebframework.web.crud.annotation中的注释类型
 
ReactiveCrudController<E,K> - org.hswebframework.web.crud.web.reactive中的接口
 
ReactiveCrudService<E,K> - org.hswebframework.web.crud.service中的接口
响应式增删改查通用服务类,增删改查,实现此接口.
ReactiveDeleteController<E,K> - org.hswebframework.web.crud.web.reactive中的接口
 
ReactiveQueryController<E,K> - org.hswebframework.web.crud.web.reactive中的接口
基于ReactiveRepository的响应式查询控制器.
ReactiveRepositoryFactoryBean<E,PK> - org.hswebframework.web.crud.configuration中的类
 
ReactiveRepositoryFactoryBean() - 类 的构造器org.hswebframework.web.crud.configuration.ReactiveRepositoryFactoryBean
 
ReactiveSaveController<E,K> - org.hswebframework.web.crud.web.reactive中的接口
 
ReactiveServiceCrudController<E,K> - org.hswebframework.web.crud.web.reactive中的接口
 
ReactiveServiceDeleteController<E,K> - org.hswebframework.web.crud.web.reactive中的接口
 
ReactiveServiceQueryController<E,K> - org.hswebframework.web.crud.web.reactive中的接口
 
ReactiveServiceSaveController<E,K> - org.hswebframework.web.crud.web.reactive中的接口
 
reactiveSqlExecutor() - 类 中的方法org.hswebframework.web.crud.configuration.JdbcSqlExecutorConfiguration
 
reactiveSqlExecutor(EasyormProperties) - 类 中的方法org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration
 
ReactiveTreeServiceQueryController<E extends TreeSortSupportEntity<K>,K> - org.hswebframework.web.crud.web.reactive中的接口
 
ReactiveTreeSortEntityService<E extends TreeSortSupportEntity<K>,K> - org.hswebframework.web.crud.service中的接口
 
registerBeanDefinitions(AnnotationMetadata, BeanDefinitionRegistry) - 类 中的方法org.hswebframework.web.crud.configuration.EasyormRepositoryRegistrar
 
releaseConnection(Connection, SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultJdbcExecutor
 
releaseConnection(Connection, SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultJdbcReactiveExecutor
 
releaseConnection(SignalType, Connection) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
resolve(Class<?>) - 类 中的方法org.hswebframework.web.crud.configuration.CompositeEntityTableMetadataResolver
 
resolve(Class<?>) - 接口 中的方法org.hswebframework.web.crud.configuration.EntityTableMetadataResolver
 
ResponseMessage<T> - org.hswebframework.web.crud.web中的类
 
ResponseMessage() - 类 的构造器org.hswebframework.web.crud.web.ResponseMessage
 
responseMessageWrapper(ServerCodecConfigurer, RequestedContentTypeResolver, ReactiveAdapterRegistry) - 类 中的方法org.hswebframework.web.crud.web.CommonWebFluxConfiguration
 
ResponseMessageWrapper - org.hswebframework.web.crud.web中的类
 
ResponseMessageWrapper(List<HttpMessageWriter<?>>, RequestedContentTypeResolver, ReactiveAdapterRegistry) - 类 的构造器org.hswebframework.web.crud.web.ResponseMessageWrapper
 
result - 类 中的变量org.hswebframework.web.crud.web.ResponseMessage
 
result(T) - 类 中的方法org.hswebframework.web.crud.web.ResponseMessage
 

S

save(Collection<E>) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
save(Publisher<E>) - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
save(Publisher<E>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
save(Publisher<E>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
save(Flux<E>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveSaveController
 
save(Flux<E>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceSaveController
 
select(SqlRequest, ResultWrapper<T, R>) - 类 中的方法org.hswebframework.web.crud.sql.DefaultJdbcExecutor
 
select(Publisher<SqlRequest>, ResultWrapper<E, ?>) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
select(String, Object...) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
select(String, ResultWrapper<E, ?>) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
select(SqlRequest, ResultWrapper<E, ?>) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
sendDeleteEvent(List<?>, EventContext) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
sendUpdateEvent(List<?>, EventContext) - 类 中的方法org.hswebframework.web.crud.events.EntityEventListener
 
setChildren(E, List<E>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 
setDefaultMapperFactory(DefaultMapperFactory) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
setDefaultPropertyCopier(DefaultPropertyCopier) - 类 中的方法org.hswebframework.web.crud.entity.factory.MapperEntityFactory
 
SNOW_FLAKE - 接口 中的静态变量org.hswebframework.web.crud.generator.Generators
 
snowFlakeStringIdGenerator() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
SnowFlakeStringIdGenerator - org.hswebframework.web.crud.generator中的类
 
SnowFlakeStringIdGenerator() - 类 的构造器org.hswebframework.web.crud.generator.SnowFlakeStringIdGenerator
 
supports(HandlerResult) - 类 中的方法org.hswebframework.web.crud.web.ResponseMessageWrapper
 
SyncRepositoryFactoryBean<E,PK> - org.hswebframework.web.crud.configuration中的类
 
SyncRepositoryFactoryBean() - 类 的构造器org.hswebframework.web.crud.configuration.SyncRepositoryFactoryBean
 
syncSqlExecutor() - 类 中的方法org.hswebframework.web.crud.configuration.JdbcSqlExecutorConfiguration
 
syncSqlExecutor(ReactiveSqlExecutor) - 类 中的方法org.hswebframework.web.crud.configuration.R2dbcSqlExecutorConfiguration
 

T

timestamp - 类 中的变量org.hswebframework.web.crud.web.ResponseMessage
 

U

update(SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultJdbcExecutor
 
update(Publisher<SqlRequest>) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
update(SqlRequest) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
update(String, Object...) - 类 中的方法org.hswebframework.web.crud.sql.DefaultR2dbcExecutor
 
update(K, Mono<E>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveSaveController
 
update(K, Mono<E>) - 接口 中的方法org.hswebframework.web.crud.web.reactive.ReactiveServiceSaveController
 
updateById(K, E) - 接口 中的方法org.hswebframework.web.crud.service.CrudService
 
updateById(K, Mono<E>) - 接口 中的方法org.hswebframework.web.crud.service.EnableCacheReactiveCrudService
 
updateById(K, Mono<E>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveCrudService
 
updateById(K, Mono<E>) - 接口 中的方法org.hswebframework.web.crud.service.ReactiveTreeSortEntityService
 

V

validateEventListener() - 类 中的方法org.hswebframework.web.crud.configuration.EasyormConfiguration
 
ValidateEventListener - org.hswebframework.web.crud.events中的类
 
ValidateEventListener() - 类 的构造器org.hswebframework.web.crud.events.ValidateEventListener
 
valueOf(String) - 枚举 中的静态方法org.hswebframework.web.crud.configuration.EasyormProperties.DialectEnum
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法org.hswebframework.web.crud.configuration.EasyormProperties.DialectEnum
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
A B C D E F G H I J M N O P Q R S T U V 
跳过导航链接

Copyright © 2016–2021. All rights reserved.