摘要:
SqlSessionFactoryBuilder: 一旦创建SqlSessionFactory,就不再需要 局部变量 SqlSessionFactory: 类似数据库连接池 一旦创建就持续存在,没有必要进行舍弃 多次创建会造成代码的“坏味道” 最简单的是单例模式的静态单例模式 SqlSession: 阅读全文
摘要:
方式一(推荐) <!-- 使用相对于类路径的资源引用 --> <mappers> <mapper resource="org/mybatis/builder/AuthorMapper.xml"/> <mapper resource="org/mybatis/builder/BlogMapper.xm 阅读全文