Uses of Class
org.apache.ibatis.mapping.MappedStatement
Packages that use MappedStatement
Package
Description
Bings mapper interfaces with mapped statements.
Base package for the Configuration building code.
Contains the statement executors.
Contains the key generators.
Base package for loading results into beans.
Contains the result processing logic.
Statement handlers.
Base package for mapping.
Base package for languages.
Default beans for languages.
Default XML MyBatis language.
Base package.
-
Uses of MappedStatement in org.apache.ibatis.binding
Methods in org.apache.ibatis.binding that return MappedStatementModifier and TypeMethodDescriptionprivate MappedStatementMapperMethod.SqlCommand.resolveMappedStatement(Class<?> mapperInterface, String methodName, Class<?> declaringClass, Configuration configuration) -
Uses of MappedStatement in org.apache.ibatis.builder
Methods in org.apache.ibatis.builder that return MappedStatementModifier 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) 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) -
Uses of MappedStatement in org.apache.ibatis.executor
Fields in org.apache.ibatis.executor declared as MappedStatementModifier and TypeFieldDescriptionprivate MappedStatementBatchExecutor.currentStatementprivate final MappedStatementBatchResult.mappedStatementMethods in org.apache.ibatis.executor that return MappedStatementMethods in org.apache.ibatis.executor with parameters of type MappedStatementModifier and TypeMethodDescriptionBaseExecutor.createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql) CachingExecutor.createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql) Executor.createCacheKey(MappedStatement ms, Object parameterObject, RowBounds rowBounds, BoundSql boundSql) voidBaseExecutor.deferLoad(MappedStatement ms, MetaObject resultObject, String property, CacheKey key, Class<?> targetType) voidCachingExecutor.deferLoad(MappedStatement ms, MetaObject resultObject, String property, CacheKey key, Class<?> targetType) voidExecutor.deferLoad(MappedStatement ms, MetaObject resultObject, String property, CacheKey key, Class<?> targetType) protected abstract <E> List<E> BaseExecutor.doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) <E> List<E> BatchExecutor.doQuery(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) <E> List<E> ReuseExecutor.doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) <E> List<E> SimpleExecutor.doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) protected abstract <E> Cursor<E> BaseExecutor.doQueryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) protected <E> Cursor<E> BatchExecutor.doQueryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) protected <E> Cursor<E> ReuseExecutor.doQueryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) protected <E> Cursor<E> SimpleExecutor.doQueryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) protected abstract intBaseExecutor.doUpdate(MappedStatement ms, Object parameter) intBatchExecutor.doUpdate(MappedStatement ms, Object parameterObject) intReuseExecutor.doUpdate(MappedStatement ms, Object parameter) intSimpleExecutor.doUpdate(MappedStatement ms, Object parameter) private voidCachingExecutor.ensureNoOutParams(MappedStatement ms, BoundSql boundSql) private voidCachingExecutor.flushCacheIfRequired(MappedStatement ms) private voidBaseExecutor.handleLocallyCachedOutputParameters(MappedStatement ms, CacheKey key, Object parameter, BoundSql boundSql) booleanBaseExecutor.isCached(MappedStatement ms, CacheKey key) booleanCachingExecutor.isCached(MappedStatement ms, CacheKey key) booleanExecutor.isCached(MappedStatement ms, CacheKey key) <E> List<E> BaseExecutor.query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler) <E> List<E> BaseExecutor.query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql) <E> List<E> CachingExecutor.query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler) <E> List<E> CachingExecutor.query(MappedStatement ms, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql) <E> List<E> Executor.query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler) <E> List<E> Executor.query(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey cacheKey, BoundSql boundSql) <E> Cursor<E> BaseExecutor.queryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds) <E> Cursor<E> CachingExecutor.queryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds) <E> Cursor<E> Executor.queryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds) private <E> List<E> BaseExecutor.queryFromDatabase(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, CacheKey key, BoundSql boundSql) intBaseExecutor.update(MappedStatement ms, Object parameter) intCachingExecutor.update(MappedStatement ms, Object parameterObject) intExecutor.update(MappedStatement ms, Object parameter) Constructors in org.apache.ibatis.executor with parameters of type MappedStatementModifierConstructorDescriptionBatchResult(MappedStatement mappedStatement, String sql) BatchResult(MappedStatement mappedStatement, String sql, Object parameterObject) -
Uses of MappedStatement in org.apache.ibatis.executor.keygen
Fields in org.apache.ibatis.executor.keygen declared as MappedStatementMethods in org.apache.ibatis.executor.keygen with parameters of type MappedStatementModifier and TypeMethodDescriptionvoidJdbc3KeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter) voidKeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter) voidNoKeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter) voidSelectKeyGenerator.processAfter(Executor executor, MappedStatement ms, Statement stmt, Object parameter) voidJdbc3KeyGenerator.processBatch(MappedStatement ms, Statement stmt, Object parameter) voidJdbc3KeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter) voidKeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter) voidNoKeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter) voidSelectKeyGenerator.processBefore(Executor executor, MappedStatement ms, Statement stmt, Object parameter) private voidSelectKeyGenerator.processGeneratedKeys(Executor executor, MappedStatement ms, Object parameter) Constructors in org.apache.ibatis.executor.keygen with parameters of type MappedStatementModifierConstructorDescriptionSelectKeyGenerator(MappedStatement keyStatement, boolean executeBefore) -
Uses of MappedStatement in org.apache.ibatis.executor.loader
Fields in org.apache.ibatis.executor.loader declared as MappedStatementMethods in org.apache.ibatis.executor.loader with parameters of type MappedStatementModifier and TypeMethodDescriptionprotected <E> List<E> ResultLoaderMap.ClosedExecutor.doQuery(MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) protected <E> Cursor<E> ResultLoaderMap.ClosedExecutor.doQueryCursor(MappedStatement ms, Object parameter, RowBounds rowBounds, BoundSql boundSql) protected intResultLoaderMap.ClosedExecutor.doUpdate(MappedStatement ms, Object parameter) Constructors in org.apache.ibatis.executor.loader with parameters of type MappedStatementModifierConstructorDescriptionResultLoader(Configuration config, Executor executor, MappedStatement mappedStatement, Object parameterObject, Class<?> targetType, CacheKey cacheKey, BoundSql boundSql) -
Uses of MappedStatement in org.apache.ibatis.executor.resultset
Fields in org.apache.ibatis.executor.resultset declared as MappedStatementModifier and TypeFieldDescriptionprivate final MappedStatementDefaultResultSetHandler.mappedStatementConstructors in org.apache.ibatis.executor.resultset with parameters of type MappedStatementModifierConstructorDescriptionDefaultResultSetHandler(Executor executor, MappedStatement mappedStatement, ParameterHandler parameterHandler, ResultHandler<?> resultHandler, BoundSql boundSql, RowBounds rowBounds) -
Uses of MappedStatement in org.apache.ibatis.executor.statement
Fields in org.apache.ibatis.executor.statement declared as MappedStatementModifier and TypeFieldDescriptionprotected final MappedStatementBaseStatementHandler.mappedStatementConstructors in org.apache.ibatis.executor.statement with parameters of type MappedStatementModifierConstructorDescriptionprotectedBaseStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) CallableStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) PreparedStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) RoutingStatementHandler(Executor executor, MappedStatement ms, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) SimpleStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameter, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql) -
Uses of MappedStatement in org.apache.ibatis.mapping
Fields in org.apache.ibatis.mapping declared as MappedStatementMethods in org.apache.ibatis.mapping that return MappedStatement -
Uses of MappedStatement in org.apache.ibatis.scripting
Methods in org.apache.ibatis.scripting with parameters of type MappedStatementModifier and TypeMethodDescriptionLanguageDriver.createParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql) Creates aParameterHandlerthat passes the actual parameters to the the JDBC statement. -
Uses of MappedStatement in org.apache.ibatis.scripting.defaults
Fields in org.apache.ibatis.scripting.defaults declared as MappedStatementModifier and TypeFieldDescriptionprivate final MappedStatementDefaultParameterHandler.mappedStatementConstructors in org.apache.ibatis.scripting.defaults with parameters of type MappedStatementModifierConstructorDescriptionDefaultParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql) -
Uses of MappedStatement in org.apache.ibatis.scripting.xmltags
Methods in org.apache.ibatis.scripting.xmltags with parameters of type MappedStatementModifier and TypeMethodDescriptionXMLLanguageDriver.createParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql) -
Uses of MappedStatement in org.apache.ibatis.session
Fields in org.apache.ibatis.session with type parameters of type MappedStatementModifier and TypeFieldDescriptionprotected final Map<String, MappedStatement> Configuration.mappedStatementsMethods in org.apache.ibatis.session that return MappedStatementModifier and TypeMethodDescriptionConfiguration.getMappedStatement(String id) Configuration.getMappedStatement(String id, boolean validateIncompleteStatements) Methods in org.apache.ibatis.session that return types with arguments of type MappedStatementMethods in org.apache.ibatis.session with parameters of type MappedStatementModifier and TypeMethodDescriptionvoidConfiguration.addMappedStatement(MappedStatement ms) private static StringAutoMappingUnknownColumnBehavior.buildMessage(MappedStatement mappedStatement, String columnName, String property, Class<?> propertyType) build error message.abstract voidAutoMappingUnknownColumnBehavior.doAction(MappedStatement mappedStatement, String columnName, String propertyName, Class<?> propertyType) Perform the action when detects an unknown column (or unknown property type) of automatic mapping target.Configuration.newParameterHandler(MappedStatement mappedStatement, Object parameterObject, BoundSql boundSql) Configuration.newResultSetHandler(Executor executor, MappedStatement mappedStatement, RowBounds rowBounds, ParameterHandler parameterHandler, ResultHandler resultHandler, BoundSql boundSql) Configuration.newStatementHandler(Executor executor, MappedStatement mappedStatement, Object parameterObject, RowBounds rowBounds, ResultHandler resultHandler, BoundSql boundSql)