mybatis笔记-MappedStatement

1.概念

MappedStatement维护了一条节点的封装

1.1 Mapper.xml

比如Mapper.xml中一个 select id, username from author where id = #{value}

1.2 获取MappedStatement类

转换成Java类就是一个MappedStatement

使用Configuration的getMappedStatement方法来获取MappedStatement对象

获取的方式key的组成为命名空间+id

sqlMapper.getConfiguration().getMappedStatement(
"org.apache.ibatis.domain.blog.mappers.AuthorMapper.selectAuthorLinkedHashMap")

2. SqlSource

负责根据用户传递的parameterObject,动态地生成SQL语句,将信息封装到BoundSql对象中,并返回

3. BoundSql

表示动态生成的SQL语句以及相应的参数信息

当调用SqlSource的getBoundSql方法,传入的就是parameterMappings相对应的参数,最终生成BoundSql对象,有了BoundSql就可以执行sql语句了

你可能感兴趣的:(mybatis笔记-MappedStatement)