Uses of Interface
org.apache.ibatis.mapping.SqlSource
-
Packages that use SqlSource Package Description org.apache.ibatis.builder Base package for the Configuration building codeorg.apache.ibatis.builder.annotation Parses annotions to create a Configurationorg.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.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
-
Uses of SqlSource in org.apache.ibatis.mapping
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.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)
-
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()
-