1. 核心层次 2. SqlSession 先从顶层的SqlSession接口开始说起.SqlSession是MyBatis提供的面向用户的API,表示和数据库的会话对象,用于完成对数据库的一系列CRUD操作以及获取mappers和管理事务等. public interface SqlSession extends Closeable { /** * Retrieve a single row mapped from the statement key. * @param <T> the re…