public class XMLLanguageDriver extends Object implements LanguageDriver
| Constructor and Description |
|---|
XMLLanguageDriver() |
| Modifier and Type | Method and Description |
|---|---|
ParameterHandler |
createParameterHandler(MappedStatement mappedStatement,
Object parameterObject,
BoundSql boundSql)
Creates a
ParameterHandler that passes the actual parameters to the the JDBC statement. |
SqlSource |
createSqlSource(Configuration configuration,
String script,
Class<?> parameterType)
Creates an
SqlSource that will hold the statement read from an annotation. |
SqlSource |
createSqlSource(Configuration configuration,
XNode script,
Class<?> parameterType)
Creates an
SqlSource that will hold the statement read from a mapper xml file. |
public ParameterHandler createParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql)
LanguageDriverParameterHandler that passes the actual parameters to the the JDBC statement.createParameterHandler in interface LanguageDrivermappedStatement - The mapped statement that is being executedparameterObject - The input parameter object (can be null)boundSql - The resulting SQL once the dynamic language has been executed.DefaultParameterHandlerpublic SqlSource createSqlSource(Configuration configuration, XNode script, Class<?> parameterType)
LanguageDriverSqlSource that will hold the statement read from a mapper xml file.
It is called during startup, when the mapped statement is read from a class or an xml file.createSqlSource in interface LanguageDriverconfiguration - The MyBatis configurationscript - XNode parsed from a XML fileparameterType - input parameter type got from a mapper method or specified in the parameterType xml attribute. Can be null.public SqlSource createSqlSource(Configuration configuration, String script, Class<?> parameterType)
LanguageDriverSqlSource that will hold the statement read from an annotation.
It is called during startup, when the mapped statement is read from a class or an xml file.createSqlSource in interface LanguageDriverconfiguration - The MyBatis configurationscript - The content of the annotationparameterType - input parameter type got from a mapper method or specified in the parameterType xml attribute. Can be null.Copyright © 2010–2015 MyBatis.org. All rights reserved.