- select(T) - 接口 中的方法com.github.abel533.mapper.base.select.SelectMapper
-
- select(MappedStatement) - 类 中的方法com.github.abel533.provider.MapperProvider
-
查询
- selectByExample(Object) - 接口 中的方法com.github.abel533.mapper.example.SelectByExampleMapper
-
- selectByExample(MappedStatement) - 类 中的方法com.github.abel533.provider.MapperProvider
-
根据Example查询
- selectByExampleAndRowBounds(Object, RowBounds) - 接口 中的方法com.github.abel533.mapper.rowbounds.SelectByExampleRowBoundsMapper
-
- selectByExampleAndRowBounds(MappedStatement) - 类 中的方法com.github.abel533.provider.MapperProvider
-
根据Example查询
- SelectByExampleMapper<T> - com.github.abel533.mapper.example中的接口
-
通用Mapper接口,Example查询
- SelectByExampleRowBoundsMapper<T> - com.github.abel533.mapper.rowbounds中的接口
-
通用Mapper接口,查询
- selectByPrimaryKey(Object) - 接口 中的方法com.github.abel533.mapper.base.select.SelectByPrimaryKeyMapper
-
- selectByPrimaryKey(MappedStatement) - 类 中的方法com.github.abel533.provider.MapperProvider
-
根据主键进行查询
- SelectByPrimaryKeyMapper<T> - com.github.abel533.mapper.base.select中的接口
-
- selectByRowBounds(T, RowBounds) - 接口 中的方法com.github.abel533.mapper.rowbounds.SelectRowBoundsMapper
-
- selectByRowBounds(MappedStatement) - 类 中的方法com.github.abel533.provider.MapperProvider
-
查询
- selectCount(T) - 接口 中的方法com.github.abel533.mapper.base.select.SelectCountMapper
-
- selectCount(MappedStatement) - 类 中的方法com.github.abel533.provider.MapperProvider
-
查询总数
- selectCountByExample(Object) - 接口 中的方法com.github.abel533.mapper.example.SelectCountByExampleMapper
-
- selectCountByExample(MappedStatement) - 类 中的方法com.github.abel533.provider.MapperProvider
-
根据Example查询总数
- SelectCountByExampleMapper<T> - com.github.abel533.mapper.example中的接口
-
通用Mapper接口,Example查询
- SelectCountMapper<T> - com.github.abel533.mapper.base.select中的接口
-
通用Mapper接口,查询
- SelectMapper<T> - com.github.abel533.mapper.base.select中的接口
-
通用Mapper接口,查询
- selectOne(T) - 接口 中的方法com.github.abel533.mapper.base.select.SelectOneMapper
-
- selectOne(MappedStatement) - 类 中的方法com.github.abel533.provider.MapperProvider
-
查询
- SelectOneMapper<T> - com.github.abel533.mapper.base.select中的接口
-
通用Mapper接口,查询
- SelectRowBoundsMapper<T> - com.github.abel533.mapper.rowbounds中的接口
-
通用Mapper接口,查询
- setCatalog(String) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
设置全局的catalog,默认为空,如果设置了值,操作表时的sql会是catalog.tablename
- setColumn(String) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setContext(Context) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- setDistinct(boolean) - 类 中的方法com.github.abel533.entity.Example
-
- setGenerator(String) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setId(boolean) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setIdentity(boolean) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setIDENTITY(String) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
主键自增回写方法,默认值MYSQL,详细说明请看文档
- setJavaType(Class<?>) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setKeyColumns(String) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityTable
-
- setKeyProperties(String) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityTable
-
- setMappers(String[]) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
方便Spring注入
- setNotEmpty(boolean) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
- setOrder(String) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
主键自增回写方法执行顺序,默认AFTER,可选值为(BEFORE|AFTER)
- setOrderBy(String) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setOrderByClause(String) - 类 中的方法com.github.abel533.entity.Example
-
- setProperties(Properties) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- setProperties(Properties) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
配置属性
- setProperties(Properties) - 类 中的方法com.github.abel533.mapperhelper.MapperInterceptor
-
- setProperty(String) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setResultType(MappedStatement, Class<?>) - 类 中的方法com.github.abel533.mapperhelper.MapperTemplate
-
设置返回值类型
- setSchema(String) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
设置全局的schema,默认为空,如果设置了值,操作表时的sql会是schema.tablename
如果同时设置了catalog,优先使用catalog.tablename
- setSeqFormat(String) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
序列的获取规则,使用{num}格式化参数,默认值为{0}.nextval,针对Oracle
可选参数一共3个,对应0,1,2,分别为SequenceName,ColumnName, PropertyName
- setSequenceName(String) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setSqlSessions(SqlSession[]) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
针对Spring注入需要处理的SqlSession
- setSqlSource(MappedStatement) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
重新设置SqlSource
- setSqlSource(MappedStatement, SqlSource) - 类 中的方法com.github.abel533.mapperhelper.MapperTemplate
-
重新设置SqlSource,同时判断如果是Jdbc3KeyGenerator,就设置为MultipleJdbc3KeyGenerator
- setSqlSource(MappedStatement) - 类 中的方法com.github.abel533.mapperhelper.MapperTemplate
-
重新设置SqlSource
- setTable(EntityHelper.EntityTable) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setTable(Table) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityTable
-
- setUuid(boolean) - 类 中的方法com.github.abel533.mapperhelper.EntityHelper.EntityColumn
-
- setUUID(String) - 类 中的方法com.github.abel533.mapperhelper.MapperHelper
-
设置UUID生成策略
配置UUID生成策略需要使用OGNL表达式
默认值32位长度:@java.util.UUID@randomUUID().toString().replace("-", "")
- SpecialProvider - com.github.abel533.provider中的类
-
Mappper实现类,特殊方法实现类
- SpecialProvider(Class<?>, MapperHelper) - 类 的构造器com.github.abel533.provider.SpecialProvider
-
- sqlMapDeleteByPrimaryKeyElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- sqlMapInsertElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- sqlMapInsertSelectiveElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- sqlMapSelectAllElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- sqlMapSelectByPrimaryKeyElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- sqlMapUpdateByPrimaryKeySelectiveElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- sqlMapUpdateByPrimaryKeyWithBLOBsElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- sqlMapUpdateByPrimaryKeyWithoutBLOBsElementGenerated(XmlElement, IntrospectedTable) - 类 中的方法com.github.abel533.generator.MapperPlugin
-
- SqlServerMapper<T> - com.github.abel533.mapper中的接口
-
通用Mapper接口,SqlServerMapper独有的通用方法
- SqlServerProvider - com.github.abel533.provider中的类
-
Mappper实现类,特殊方法实现类
- SqlServerProvider(Class<?>, MapperHelper) - 类 的构造器com.github.abel533.provider.SqlServerProvider
-
- supportMethod(String) - 类 中的方法com.github.abel533.mapperhelper.EmptyMapperProvider
-
- supportMethod(String) - 类 中的方法com.github.abel533.mapperhelper.MapperTemplate
-
是否支持该通用方法