Mybatis中万能的Map

Mybatis中万能的Map,第1张

Mybatis中万能的Map 万能的Map
  • 假设,我们的实体类,或者数据库中的表,字段或者参数过多,我们需要考虑使用Map

  • 简单来说,map你用什么参数就写什么参数,而实体类需要写所有参数。

  • map不需要名称完全对应,通过键的映射取值,实体类必须要求和实体类中属性名字一样

  • map传递参数,直接在sql中取出key即可 【parameterType=“map”】

  • 对象传递参数,直接在sql中取对象的属性即可 【parameterType=“Object”】

  • 只有一个基本类型 (如int),可以直接在sql中找到

  • 多个参数用Map或者注解

demo

map 实现add user

UserMapper接口

public interface UserMapper {
    User getUserById2(Map map);
}

UserMaper.xml

    
        insert into mybatis.user(id, name, pwd) VALUES (#{userid},#{username},#{password});
    

test

    @Test
    public void addUser2(){
        SqlSession sqlSession=MybatisUtils.getSqlSession();
        UserMapper mapper=sqlSession.getMapper(UserMapper.class);
        Map map=new HashMap();
        map.put("userid",5);
        map.put("username","王五");
        map.put("password","23333");
        mapper.addUser2(map);
        sqlSession.commit();
        sqlSession.close();
    }

map 实现通过id查询
UserMapper接口

public interface UserMapper {
   User getUserById2(Map map);
}

UserMaper.xml

  
        select * from mybatis.user where id=#{id} and name=#{name}
    

test

    @Test
    public void getUserById2() {
        SqlSession sqlSession = MybatisUtils.getSqlSession();
        UserMapper mapper = sqlSession.getMapper(UserMapper.class);
        Map map=new HashMap();
        map.put("id",1);
        map.put("name","冷丁");
        User userById = mapper.getUserById2(map);
        System.out.println(userById);
        sqlSession.close();
    }

如果对您有帮助,免费的赞点一个 感谢~~~

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5658953.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存