Uses of Interface
org.apache.ibatis.mapping.SqlSource
-
Packages that use SqlSource 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 Base package for mapping.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. -
-
Uses of SqlSource in org.apache.ibatis.builder
Classes in org.apache.ibatis.builder that implement SqlSource Modifier and Type Class Description class
StaticSqlSource
Methods in org.apache.ibatis.builder that return SqlSource Modifier and Type Method Description SqlSource
SqlSourceBuilder. parse(java.lang.String originalSql, java.lang.Class<?> parameterType, java.util.Map<java.lang.String,java.lang.Object> additionalParameters)
Methods in org.apache.ibatis.builder with parameters of type SqlSource Modifier and Type Method Description MappedStatement
MapperBuilderAssistant. 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)
Backward compatibility signature 'addMappedStatement'.MappedStatement
MapperBuilderAssistant. 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)
-
Uses of SqlSource in org.apache.ibatis.builder.annotation
Classes in org.apache.ibatis.builder.annotation that implement SqlSource Modifier and Type Class Description class
ProviderSqlSource
Methods in org.apache.ibatis.builder.annotation that return SqlSource Modifier and Type Method Description private SqlSource
MapperAnnotationBuilder. buildSqlSource(java.lang.annotation.Annotation annotation, java.lang.Class<?> parameterType, LanguageDriver languageDriver, java.lang.reflect.Method method)
private SqlSource
MapperAnnotationBuilder. buildSqlSourceFromStrings(java.lang.String[] strings, java.lang.Class<?> parameterTypeClass, LanguageDriver languageDriver)
private SqlSource
ProviderSqlSource. createSqlSource(java.lang.Object parameterObject)
-
Uses of SqlSource in org.apache.ibatis.mapping
Fields in org.apache.ibatis.mapping declared as SqlSource Modifier and Type Field Description private SqlSource
MappedStatement. sqlSource
Methods in org.apache.ibatis.mapping that return SqlSource Modifier and Type Method Description SqlSource
MappedStatement. getSqlSource()
Constructors in org.apache.ibatis.mapping with parameters of type SqlSource Constructor Description Builder(Configuration configuration, java.lang.String id, SqlSource sqlSource, SqlCommandType sqlCommandType)
-
Uses of SqlSource in org.apache.ibatis.scripting
Methods in org.apache.ibatis.scripting that return SqlSource Modifier and Type Method Description SqlSource
LanguageDriver. createSqlSource(Configuration configuration, java.lang.String script, java.lang.Class<?> parameterType)
Creates anSqlSource
that will hold the statement read from an annotation.SqlSource
LanguageDriver. createSqlSource(Configuration configuration, XNode script, java.lang.Class<?> parameterType)
Creates anSqlSource
that will hold the statement read from a mapper xml file. -
Uses of SqlSource in org.apache.ibatis.scripting.defaults
Classes in org.apache.ibatis.scripting.defaults that implement SqlSource Modifier and Type Class Description class
RawSqlSource
Static SqlSource.Fields in org.apache.ibatis.scripting.defaults declared as SqlSource Modifier and Type Field Description private SqlSource
RawSqlSource. sqlSource
Methods in org.apache.ibatis.scripting.defaults that return SqlSource Modifier and Type Method Description SqlSource
RawLanguageDriver. createSqlSource(Configuration configuration, java.lang.String script, java.lang.Class<?> parameterType)
SqlSource
RawLanguageDriver. createSqlSource(Configuration configuration, XNode script, java.lang.Class<?> parameterType)
Methods in org.apache.ibatis.scripting.defaults with parameters of type SqlSource Modifier and Type Method Description private void
RawLanguageDriver. checkIsNotDynamic(SqlSource source)
-
Uses of SqlSource in org.apache.ibatis.scripting.xmltags
Classes in org.apache.ibatis.scripting.xmltags that implement SqlSource Modifier and Type Class Description class
DynamicSqlSource
Methods in org.apache.ibatis.scripting.xmltags that return SqlSource Modifier and Type Method Description SqlSource
XMLLanguageDriver. createSqlSource(Configuration configuration, java.lang.String script, java.lang.Class<?> parameterType)
SqlSource
XMLLanguageDriver. createSqlSource(Configuration configuration, XNode script, java.lang.Class<?> parameterType)
SqlSource
XMLScriptBuilder. parseScriptNode()
-