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.builder.annotation Parses annotations to create a Configuration.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 MappedStatementMapperBuilderAssistant. addMappedStatement(java.lang.String id, SqlSource sqlSource, StatementType statementType, SqlCommandType sqlCommandType, java.lang.Integer fetchSize, java.lang.Integer timeout, java.lang.String parameterMap, java.lang.Class<?> parameterType, java.lang.String resultMap, java.lang.Class<?> resultType, ResultSetType resultSetType, boolean flushCache, boolean useCache, boolean resultOrdered, KeyGenerator keyGenerator, java.lang.String keyProperty, java.lang.String keyColumn, java.lang.String databaseId, LanguageDriver lang)MappedStatementMapperBuilderAssistant. addMappedStatement(java.lang.String id, SqlSource sqlSource, StatementType statementType, SqlCommandType sqlCommandType, java.lang.Integer fetchSize, java.lang.Integer timeout, java.lang.String parameterMap, java.lang.Class<?> parameterType, java.lang.String resultMap, java.lang.Class<?> resultType, ResultSetType resultSetType, boolean flushCache, boolean useCache, boolean resultOrdered, KeyGenerator keyGenerator, java.lang.String keyProperty, java.lang.String keyColumn, java.lang.String databaseId, LanguageDriver lang, java.lang.String resultSets)Backward compatibility signature 'addMappedStatement'.MappedStatementMapperBuilderAssistant. addMappedStatement(java.lang.String id, SqlSource sqlSource, StatementType statementType, SqlCommandType sqlCommandType, java.lang.Integer fetchSize, java.lang.Integer timeout, java.lang.String parameterMap, java.lang.Class<?> parameterType, java.lang.String resultMap, java.lang.Class<?> resultType, ResultSetType resultSetType, boolean flushCache, boolean useCache, boolean resultOrdered, KeyGenerator keyGenerator, java.lang.String keyProperty, java.lang.String keyColumn, java.lang.String databaseId, LanguageDriver lang, java.lang.String resultSets, boolean dirtySelect) -
Uses of KeyGenerator in org.apache.ibatis.builder.annotation
Methods in org.apache.ibatis.builder.annotation that return KeyGenerator Modifier and Type Method Description private KeyGeneratorMapperAnnotationBuilder. handleSelectKeyAnnotation(SelectKey selectKeyAnnotation, java.lang.String baseStatementId, java.lang.Class<?> parameterTypeClass, LanguageDriver languageDriver) -
Uses of KeyGenerator in org.apache.ibatis.executor.keygen
Classes in org.apache.ibatis.executor.keygen that implement KeyGenerator Modifier and Type Class Description classJdbc3KeyGeneratorclassNoKeyGeneratorclassSelectKeyGenerator -
Uses of KeyGenerator in org.apache.ibatis.mapping
Fields in org.apache.ibatis.mapping declared as KeyGenerator Modifier and Type Field Description private KeyGeneratorMappedStatement. keyGeneratorMethods in org.apache.ibatis.mapping that return KeyGenerator Modifier and Type Method Description KeyGeneratorMappedStatement. getKeyGenerator()Methods in org.apache.ibatis.mapping with parameters of type KeyGenerator Modifier and Type Method Description MappedStatement.BuilderMappedStatement.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 java.util.Map<java.lang.String,KeyGenerator>Configuration. keyGeneratorsMethods in org.apache.ibatis.session that return KeyGenerator Modifier and Type Method Description KeyGeneratorConfiguration. getKeyGenerator(java.lang.String id)Methods in org.apache.ibatis.session that return types with arguments of type KeyGenerator Modifier and Type Method Description java.util.Collection<KeyGenerator>Configuration. getKeyGenerators()Methods in org.apache.ibatis.session with parameters of type KeyGenerator Modifier and Type Method Description voidConfiguration. addKeyGenerator(java.lang.String id, KeyGenerator keyGenerator)
-