• day12:MyBatis的Dao层实现方式


    MyBatis的Dao层实现方式

    传统开发方式

    1. 编写UserDao接口
    public interface UserDao {
    	List<User> findAll() throws IOException;
    }
    
    • 1
    • 2
    • 3
    2. 编写UserDaoImpl实现
    public class UserDaoImpl implements UserDao {
    	public List<User> findAll() throws IOException {
    		InputStream resourceAsStream = Resources.getResourceAsStream("SqlMapConfig.xml");
    		SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(resourceAsStream);
    		SqlSession sqlSession = sqlSessionFactory.openSession();
    		List<User> userList = sqlSession.selectList("userMapper.findAll");
    		sqlSession.close();
    		return userList;
    	}
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    3. 测试传统方式
    @Test
    public void testTraditionDao() throws IOException {
    	UserDao userDao = new UserDaoImpl();
    	List<User> all = userDao.findAll();
    	System.out.println(all);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6

    代理开发方式

    代理开发方式介绍

    采用 Mybatis 的代理开发方式实现 DAO 层的开发,这种方式是我们后面进入企业的主流。Mapper 接口开发方法只需要程序员编写Mapper 接口(相当于Dao 接口),由Mybatis 框架根据接口定义创建接口的动态代理对象,代理对象的方法体同上边Dao接口实现类方法。

    Mapper 接口开发需要遵循以下规范:
    1、 Mapper.xml文件中的namespace与mapper接口的全限定名相同
    2、 Mapper接口方法名和Mapper.xml中定义的每个statement的id相同
    3、 Mapper接口方法的输入参数类型和mapper.xml中定义的每个sql的parameterType的类型相同(返回集合时,主要看集合内部装的数据是上面类型)
    4、 Mapper接口方法的输出参数类型和mapper.xml中定义的每个sql的resultType的类型相同

    编写UserMapper接口

    接口和配置文件相应的类型和id要对应
    在这里插入图片描述

    测试代理方式
    //创建接口
    public interface UserMapper {
        public List<User> findAll() throws IOException;
        public User findById(int id);
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5

    在配置文件中配置

    <mapper namespace="com.dao.UserMapper">
    
        <select id="findAll" resultType="user">
            select * from user
        select>
    
    
        <select id="findById" parameterType="int" resultType="user">
            select * from user where id=#{id}
        select>
    mapper>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11

    测试

    @Test
    public void testProxyDao() throws IOException {
    	InputStream resourceAsStream = Resources.getResourceAsStream("SqlMapConfig.xml");
    	SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(resourceAsStream);
    	SqlSession sqlSession = sqlSessionFactory.openSession();
    	//获得MyBatis框架生成的UserMapper接口的实现类
    	UserMapper userMapper = sqlSession.getMapper(UserMapper.class);
    	//测试findAll方法
    	User user = userMapper.findById(1);
    	System.out.println(user);
    
    	//测试findById方法
    	User user = mapper.findById(1);
        System.out.println(user);
        
    	sqlSession.close();
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    由上面例子可见,使用代理开发方式不仅解耦,而且可以减少代码量。

    知识小结

    MyBatis的Dao层实现的两种方式:

    • 手动对Dao进行实现:传统开发方式
    • 代理方式对Dao进行实现:
      UserMapper userMapper = sqlSession.getMapper(UserMapper.class);

    在这里插入图片描述

  • 相关阅读:
    React基础-React中发送Ajax请求以及Mock数据
    SEMI-SUPERVISED CLASSIFICATION WITH GRAPH CONVOLUTIONAL NETWORKS 论文/GCN学习笔记
    leetcode(翻转二叉树)
    通过canvas获取图片的颜色值
    git pull 拉取项目的时候 失败说有冲突 但是不知道哪冲突了
    openssl 用法整理 —— 筑梦之路
    用户认证技术
    SpringCloud对服务内某个client进行单独配置
    【无标题】
    干性湿疹和湿性湿疹
  • 原文地址:https://blog.csdn.net/weixin_45804632/article/details/126028229