摘要: SqlSession工厂对象SqlSessionFactory有多个方法创建bean实例,常用两个: 一、传统开发方式 1. 编写UserDao接口 1 public interface UserDao { 2 List<User> findAll() throws IOException; 3 } 阅读全文
posted @ 2021-12-05 19:01 E_lian 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 1. SqlSession工厂构建器SqlSessionFactoryBuilder 常用API:SqlSessionFactory build(InputStream inputStream)通过加载mybatis的核心文件的输入流的形式构建一个SqlSessionFactory对象 1 Stri 阅读全文
posted @ 2021-12-05 17:30 E_lian 阅读(34) 评论(0) 推荐(0) 编辑