跳过导航链接
A C D G H I L M P R S T V 

A

AbstractMybatisInterceptor - com.github.awesome.springboot.commons.data.mybatis.interceptor中的类
MyBatis 拦截器的抽象类,提供了对 SQL 执行过程的拦截和自定义处理功能。
AbstractMybatisInterceptor() - 类 的构造器com.github.awesome.springboot.commons.data.mybatis.interceptor.AbstractMybatisInterceptor
 

C

com.github.awesome.springboot.commons.data.mybatis.enums - 程序包 com.github.awesome.springboot.commons.data.mybatis.enums
 
com.github.awesome.springboot.commons.data.mybatis.interceptor - 程序包 com.github.awesome.springboot.commons.data.mybatis.interceptor
 
com.github.awesome.springboot.commons.data.mybatis.support - 程序包 com.github.awesome.springboot.commons.data.mybatis.support
 

D

doIntercept(MybatisFieldHandler, String, Object) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.AbstractMybatisInterceptor
根据不同的字段类型(MapIterable或自定义对象)对字段进行处理。

G

getNullableResult(ResultSet, String) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.support.LocalDateTimeTypeHandlerCustomizer
 
getNullableResult(ResultSet, int) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.support.LocalDateTimeTypeHandlerCustomizer
 
getNullableResult(CallableStatement, int) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.support.LocalDateTimeTypeHandlerCustomizer
 
getNullableResult(ResultSet, String) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.support.LocalDateTypeHandlerCustomizer
 
getNullableResult(ResultSet, int) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.support.LocalDateTypeHandlerCustomizer
 
getNullableResult(CallableStatement, int) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.support.LocalDateTypeHandlerCustomizer
 

H

handle(String, String, Object) - 接口 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.MybatisFieldHandler
处理指定表的字段值。

I

intercept(Invocation) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.MybatisParameterInterceptor
拦截执行 SQL 更新操作的核心方法。
intercept(Invocation) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.MybatisResultSetInterceptor
拦截执行查询结果处理的核心方法。

L

LocalDateTimeTypeHandlerCustomizer - com.github.awesome.springboot.commons.data.mybatis.support中的类
自定义 MyBatis 的类型处理器,用于将数据库中的Timestamp类型或LocalDateTime类型数据转换为 Java 8 LocalDateTime类型。
LocalDateTimeTypeHandlerCustomizer() - 类 的构造器com.github.awesome.springboot.commons.data.mybatis.support.LocalDateTimeTypeHandlerCustomizer
 
LocalDateTypeHandlerCustomizer - com.github.awesome.springboot.commons.data.mybatis.support中的类
自定义 MyBatis 的类型处理器,用于将数据库中的日期/时间类型(如Timestamp)转换为 Java 8 LocalDate类型。
LocalDateTypeHandlerCustomizer() - 类 的构造器com.github.awesome.springboot.commons.data.mybatis.support.LocalDateTypeHandlerCustomizer
 

M

MybatisFieldHandler - com.github.awesome.springboot.commons.data.mybatis.interceptor中的接口
MyBatis 字段处理器接口,用于在 MyBatis 执行 SQL 操作时,对特定表的字段进行自定义处理。
MybatisParameterInterceptor - com.github.awesome.springboot.commons.data.mybatis.interceptor中的类
MybatisParameterInterceptor 是一个 MyBatis 插件拦截器,用于在执行 SQL 更新操作(包括插入和更新)时, 对参数进行处理。
MybatisParameterInterceptor() - 类 的构造器com.github.awesome.springboot.commons.data.mybatis.interceptor.MybatisParameterInterceptor
 
MybatisResultSetInterceptor - com.github.awesome.springboot.commons.data.mybatis.interceptor中的类
MybatisResultSetInterceptor 是一个 MyBatis 插件拦截器,用于拦截 SQL 查询结果的处理过程。
MybatisResultSetInterceptor() - 类 的构造器com.github.awesome.springboot.commons.data.mybatis.interceptor.MybatisResultSetInterceptor
 

P

parseTableNamesFromSql(MappedStatement, Object) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.AbstractMybatisInterceptor
MappedStatement中解析出 SQL 语句,并提取 SQL 中涉及到的表名。
parseTableNamesFromSql(DefaultResultSetHandler) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.AbstractMybatisInterceptor
DefaultResultSetHandler中解析 SQL 语句,并提取 SQL 中涉及到的表名。
parseTableNamesFromSql(String) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.AbstractMybatisInterceptor
从给定的 SQL 语句中提取所有涉及到的表名。

R

registerParameterFieldHandler(MybatisFieldHandler) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.MybatisParameterInterceptor
注册一个MybatisFieldHandler处理器,该处理器会在执行拦截操作时对参数进行处理。
registerResultSetFieldHandler(MybatisFieldHandler) - 类 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.MybatisResultSetInterceptor
注册一个MybatisFieldHandler处理器,该处理器会在执行拦截操作时对查询结果进行处理。

S

SqlKeywords - com.github.awesome.springboot.commons.data.mybatis.enums中的枚举
枚举类 SqlKeywords 定义了 SQL 语言中的一些关键字。

T

targetTableFields() - 接口 中的方法com.github.awesome.springboot.commons.data.mybatis.interceptor.MybatisFieldHandler
获取当前处理器需要处理的目标数据表及其数据库字段的映射关系。

V

valueOf(String) - 枚举 中的静态方法com.github.awesome.springboot.commons.data.mybatis.enums.SqlKeywords
返回带有指定名称的该类型的枚举常量。
values() - 枚举 中的静态方法com.github.awesome.springboot.commons.data.mybatis.enums.SqlKeywords
按照声明该枚举类型的常量的顺序, 返回 包含这些常量的数组。
A C D G H I L M P R S T V 
跳过导航链接

Copyright © 2025 Awesome Java Web. All rights reserved.