Package | Description |
---|---|
org.apache.ibatis.builder |
Base package for the Configuration building code
|
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.
|
org.apache.ibatis.session |
Base package.
|
Modifier and Type | Method and Description |
---|---|
LanguageDriver |
MapperBuilderAssistant.getLanguageDriver(Class<?> langClass) |
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 | Method and Description |
---|---|
LanguageDriver |
MappedStatement.getLang() |
Modifier and Type | Method and Description |
---|---|
MappedStatement.Builder |
MappedStatement.Builder.lang(LanguageDriver driver) |
Modifier and Type | Method and Description |
---|---|
LanguageDriver |
LanguageDriverRegistry.getDefaultDriver() |
LanguageDriver |
LanguageDriverRegistry.getDriver(Class<?> cls) |
Modifier and Type | Method and Description |
---|---|
void |
LanguageDriverRegistry.register(LanguageDriver instance) |
Modifier and Type | Class and Description |
---|---|
class |
RawLanguageDriver
As of 3.2.4 the default XML language is able to identify static statements
and create a
RawSqlSource . |
Modifier and Type | Class and Description |
---|---|
class |
XMLLanguageDriver |
Modifier and Type | Method and Description |
---|---|
LanguageDriver |
Configuration.getDefaultScriptingLanuageInstance() |
Copyright © 2010–2015 MyBatis.org. All rights reserved.