详细聊聊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

  

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();
    }

多个参数可以使用Map进行传参

xml文件SQL语句

总结

到此这篇关于Mybatis中万能的Map的文章就介绍到这了,更多相关Mybatis中的Map内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(详细聊聊Mybatis中万能的Map)