Package | Description |
---|---|
org.apache.ibatis.builder |
Base package for the Configuration building code
|
org.apache.ibatis.builder.annotation |
Parses annotions to create a Configuration
|
org.apache.ibatis.mapping |
TODO fillme.
|
org.apache.ibatis.scripting |
Base package for languages.
|
org.apache.ibatis.scripting.defaults |
Default beans for languages.
|
org.apache.ibatis.scripting.xmltags |
Default XML MyBatis language.
|
Modifier and Type | Class and Description |
---|---|
class |
StaticSqlSource |
Modifier and Type | Method and Description |
---|---|
SqlSource |
SqlSourceBuilder.parse(String originalSql,
Class<?> parameterType,
Map<String,Object> additionalParameters) |
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 |
ProviderSqlSource |
Modifier and Type | Method and Description |
---|---|
SqlSource |
MappedStatement.getSqlSource() |
Constructor and Description |
---|
MappedStatement.Builder(Configuration configuration,
String id,
SqlSource sqlSource,
SqlCommandType sqlCommandType) |
Modifier and Type | Method and Description |
---|---|
SqlSource |
LanguageDriver.createSqlSource(Configuration configuration,
String script,
Class<?> parameterType)
Creates an
SqlSource that will hold the statement read from an annotation. |
SqlSource |
LanguageDriver.createSqlSource(Configuration configuration,
XNode script,
Class<?> parameterType)
Creates an
SqlSource that will hold the statement read from a mapper xml file. |
Modifier and Type | Class and Description |
---|---|
class |
RawSqlSource
Static SqlSource.
|
Modifier and Type | Method and Description |
---|---|
SqlSource |
RawLanguageDriver.createSqlSource(Configuration configuration,
String script,
Class<?> parameterType) |
SqlSource |
RawLanguageDriver.createSqlSource(Configuration configuration,
XNode script,
Class<?> parameterType) |
Modifier and Type | Class and Description |
---|---|
class |
DynamicSqlSource |
Modifier and Type | Method and Description |
---|---|
SqlSource |
XMLLanguageDriver.createSqlSource(Configuration configuration,
String script,
Class<?> parameterType) |
SqlSource |
XMLLanguageDriver.createSqlSource(Configuration configuration,
XNode script,
Class<?> parameterType) |
SqlSource |
XMLScriptBuilder.parseScriptNode() |
Copyright © 2010–2015 MyBatis.org. All rights reserved.