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 |
TODO fillme.
|
org.apache.ibatis.session |
Base package.
|
Modifier and Type | Method and 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
|
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) |
Modifier and Type | Class and Description |
---|---|
class |
Jdbc3KeyGenerator |
class |
NoKeyGenerator |
class |
SelectKeyGenerator |
Modifier and Type | Method and Description |
---|---|
KeyGenerator |
MappedStatement.getKeyGenerator() |
Modifier and Type | Method and Description |
---|---|
MappedStatement.Builder |
MappedStatement.Builder.keyGenerator(KeyGenerator keyGenerator) |
Modifier and Type | Field and Description |
---|---|
protected Map<String,KeyGenerator> |
Configuration.keyGenerators |
Modifier and Type | Method and Description |
---|---|
KeyGenerator |
Configuration.getKeyGenerator(String id) |
Modifier and Type | Method and Description |
---|---|
Collection<KeyGenerator> |
Configuration.getKeyGenerators() |
Modifier and Type | Method and Description |
---|---|
void |
Configuration.addKeyGenerator(String id,
KeyGenerator keyGenerator) |
Copyright © 2010–2015 MyBatis.org. All rights reserved.