Uses of Interface
org.apache.ibatis.executor.keygen.KeyGenerator
-
Packages that use KeyGenerator Package Description org.apache.ibatis.builder Base package for the Configuration building code.org.apache.ibatis.executor.keygen Contains the key generators.org.apache.ibatis.mapping Base package for mapping.org.apache.ibatis.session Base package. -
-
Uses of KeyGenerator in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder with parameters of type KeyGenerator Modifier and Type Method Description MappedStatement
MapperBuilderAssistant. addMappedStatement(String id, SqlSource sqlSource, StatementType statementType, SqlCommandType sqlCommandType, Integer fetchSize, Integer timeout, String parameterMap, Class<?> parameterType, String resultMap, Class<?> resultType, ResultSetType resultSetType, boolean flushCache, boolean useCache, boolean resultOrdered, KeyGenerator keyGenerator, String keyProperty, String keyColumn, String databaseId, LanguageDriver lang)
Backward compatibility signature 'addMappedStatement'.MappedStatement
MapperBuilderAssistant. addMappedStatement(String id, SqlSource sqlSource, StatementType statementType, SqlCommandType sqlCommandType, Integer fetchSize, Integer timeout, String parameterMap, Class<?> parameterType, String resultMap, Class<?> resultType, ResultSetType resultSetType, boolean flushCache, boolean useCache, boolean resultOrdered, KeyGenerator keyGenerator, String keyProperty, String keyColumn, String databaseId, LanguageDriver lang, String resultSets)
-
Uses of KeyGenerator in org.apache.ibatis.executor.keygen
Classes in org.apache.ibatis.executor.keygen that implement KeyGenerator Modifier and Type Class Description class
Jdbc3KeyGenerator
class
NoKeyGenerator
class
SelectKeyGenerator
-
Uses of KeyGenerator in org.apache.ibatis.mapping
Methods in org.apache.ibatis.mapping that return KeyGenerator Modifier and Type Method Description KeyGenerator
MappedStatement. getKeyGenerator()
Methods in org.apache.ibatis.mapping with parameters of type KeyGenerator Modifier and Type Method Description MappedStatement.Builder
MappedStatement.Builder. keyGenerator(KeyGenerator keyGenerator)
-
Uses of KeyGenerator in org.apache.ibatis.session
Fields in org.apache.ibatis.session with type parameters of type KeyGenerator Modifier and Type Field Description protected Map<String,KeyGenerator>
Configuration. keyGenerators
Methods in org.apache.ibatis.session that return KeyGenerator Modifier and Type Method Description KeyGenerator
Configuration. getKeyGenerator(String id)
Methods in org.apache.ibatis.session that return types with arguments of type KeyGenerator Modifier and Type Method Description Collection<KeyGenerator>
Configuration. getKeyGenerators()
Methods in org.apache.ibatis.session with parameters of type KeyGenerator Modifier and Type Method Description void
Configuration. addKeyGenerator(String id, KeyGenerator keyGenerator)
-