Uses of Interface
org.apache.ibatis.mapping.SqlSource
Package
Description
Base package for the Configuration building code.
Parses annotions to create a Configuration.
Base package for mapping.
Base package for languages.
Default beans for languages.
Default XML MyBatis language.
-
Uses of SqlSource in org.apache.ibatis.builder
Modifier and TypeMethodDescriptionSqlSourceBuilder.parse
(String originalSql, Class<?> parameterType, Map<String, Object> additionalParameters) Modifier and TypeMethodDescriptionMapperBuilderAssistant.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) 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) Backward compatibility signature 'addMappedStatement'.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, boolean dirtySelect) -
Uses of SqlSource in org.apache.ibatis.builder.annotation
-
Uses of SqlSource in org.apache.ibatis.mapping
ModifierConstructorDescriptionBuilder
(Configuration configuration, String id, SqlSource sqlSource, SqlCommandType sqlCommandType) -
Uses of SqlSource in org.apache.ibatis.scripting
Modifier and TypeMethodDescriptionLanguageDriver.createSqlSource
(Configuration configuration, String script, Class<?> parameterType) Creates anSqlSource
that will hold the statement read from an annotation.LanguageDriver.createSqlSource
(Configuration configuration, XNode script, Class<?> parameterType) Creates anSqlSource
that will hold the statement read from a mapper xml file. -
Uses of SqlSource in org.apache.ibatis.scripting.defaults
Modifier and TypeMethodDescriptionRawLanguageDriver.createSqlSource
(Configuration configuration, String script, Class<?> parameterType) RawLanguageDriver.createSqlSource
(Configuration configuration, XNode script, Class<?> parameterType) -
Uses of SqlSource in org.apache.ibatis.scripting.xmltags
Modifier and TypeMethodDescriptionXMLLanguageDriver.createSqlSource
(Configuration configuration, String script, Class<?> parameterType) XMLLanguageDriver.createSqlSource
(Configuration configuration, XNode script, Class<?> parameterType) XMLScriptBuilder.parseScriptNode()