六、MyBatis的各种查询功能

简介: 通过name=“王五”进行查询一条数据,并封装在Person对象中。

准备

数据库表

t_person表

2345_image_file_copy_105.jpg

实体类对象

2345_image_file_copy_106.jpg

1、查询一个实体类对象

     通过name=“王五”进行查询一条数据,并封装在Person对象中。

mapper接口

public interface PersonMapper {
    //通过name查询对象
    Person selectPersonByName(@Param("name") String name);
}

映射文件

<mapper namespace="com.xxx.mapper.PersonMapper"><!--接口-->
<!--    Person selectPersonByName(@Param("name") String name);-->
    <select id="selectPersonByName" resultType="com.xxx.pojo.Person">
        select * from t_person where name=#{name}
    </select>
</mapper>

测试

    PersonMapper mapper = sqlSession.getMapper(PersonMapper.class);
        Person zs = mapper.selectPersonByName("张三");
        System.out.println(zs);

输出结果

2345_image_file_copy_107.jpg

2、查询一个list集合

      查询所有age=20的人。

mapper接口

public interface PersonMapper {
    //查询所有age=20的人
    List<Person> selectPersonByAge(@Param("age") Integer age);
}

映射文件

<mapper namespace="com.xxx.mapper.PersonMapper"><!--接口-->
<!--    List<Person> SelectPersonByAge(@Param("age") Integer age);-->
    <select id="selectPersonByAge" resultType="com.xxx.pojo.Person">
        select * from t_person where age=20
    </select>
</mapper>

测试

    PersonMapper mapper = sqlSession.getMapper(PersonMapper.class);
        List<Person> people = mapper.selectPersonByAge(20);
        System.out.println(people);

输出结果

2345_image_file_copy_108.jpg

3、查询单个数据

     查询年龄等于xx的人的个数。

mapper接口

public interface PersonMapper {
    //查询年龄等于20的人的个数
    Integer selectAgeCount(Integer age);
}

映射文件

<mapper namespace="com.xxx.mapper.PersonMapper"><!--接口-->
<!--    Integer selectAgeCount();-->
    <select id="selectAgeCount" resultType="int">
        select count(*) from t_person where age=#{age}
    </select>
</mapper>

测试

    PersonMapper mapper = sqlSession.getMapper(PersonMapper.class);
        //查询年龄是20岁的人的个数
        Integer integer = mapper.selectAgeCount(20);
        System.out.println(integer);

输出结果

2345_image_file_copy_109.jpg

4、查询一条数据为map集合

      根据用户name查询用户信息为map集合。

mapper接口

public interface PersonMapper {
    //根据用户name查询用户信息为map集合
    Map<String,Object> selectPersonByIdMap(@Param("name")String name);
}

映射文件

<mapper namespace="com.xxx.mapper.PersonMapper"><!--接口-->
<!--     Map<String,Object> selectPersonByIdMap(@Param("name")String name);-->
    <select id="selectPersonByIdMap" resultType="Map">
        select * from t_person where name=#{name}
    </select>
</mapper>

测试

        PersonMapper mapper = sqlSession.getMapper(PersonMapper.class);
        //根据用户name查询用户信息为map集合
        Map<String, Object> map = mapper.selectPersonByIdMap("王五");
        System.out.println(map)

输出结果

2345_image_file_copy_110.jpg

5、查询多条数据为map集合

     查询所有用户信息为map集合。

      将表中的数据以map集合的方式查询,一条数据对应一个map;若有多条数据,就会产生多个map集合,此 时可以将这些map放在一个list集合中获取。

方式一:List

mapper接口

public interface PersonMapper {
    //查询所有用户信息为map集合01。
    List<Map<String,Object>> selectAllPerson01();
}

映射文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd"><!--约束,约束不同xml中所写的标签也不同-->
<mapper namespace="com.xxx.mapper.PersonMapper"><!--接口-->
<!--    List<Map<String,Object>> selectAllPerson01();-->
    <select id="selectAllPerson01" resultType="map">
        select * from t_person
    </select>
</mapper>

测试

        PersonMapper mapper = sqlSession.getMapper(PersonMapper.class);
        //查询所有用户信息为map集合01
        List<Map<String, Object>> maps = mapper.selectAllPerson01();
        System.out.println(maps);

输出结果

2345_image_file_copy_111.jpg

方式二:@MapKey注解

      将表中的数据以map集合的方式查询,一条数据对应一个map;若有多条数据,就会产生多个map集合,并 且最终要以一个map的方式返回数据,此时需要通过@MapKey注解设置map集合的键,值是每条数据所对应的 map集合。

mapper接口

public interface PersonMapper {
   //查询所有用户信息为map集合02。
    @MapKey("name")
    Map<String,Object> selectAllPerson02();
}

映射文件

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE mapper
        PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
        "http://mybatis.org/dtd/mybatis-3-mapper.dtd"><!--约束,约束不同xml中所写的标签也不同-->
<mapper namespace="com.xxx.mapper.PersonMapper"><!--接口-->
<!--    Map<String,Object> selectAllPerson02();-->
    <select id="selectAllPerson02" resultType="map">
        select * from t_person
    </select>
</mapper>

测试

        PersonMapper mapper = sqlSession.getMapper(PersonMapper.class);
        //查询所有用户信息为map集合02
        Map<String, Object> maps = mapper.selectAllPerson02();
        System.out.println(maps);

输出结果

2345_image_file_copy_112.jpg

相关文章
|
4月前
|
Java 数据库连接 数据库
mybatis查询数据,返回的对象少了一个字段
mybatis查询数据,返回的对象少了一个字段
296 8
|
16天前
|
XML Java 数据库连接
Mybatis实现RBAC权限模型查询
通过对RBAC权限模型的理解和MyBatis的灵活使用,我们可以高效地实现复杂的权限管理功能,为应用程序的安全性和可维护性提供有力支持。
48 5
|
2月前
|
SQL Java 数据库连接
深入 MyBatis-Plus 插件:解锁高级数据库功能
Mybatis-Plus 提供了丰富的插件机制,这些插件可以帮助开发者更方便地扩展 Mybatis 的功能,提升开发效率、优化性能和实现一些常用的功能。
299 26
深入 MyBatis-Plus 插件:解锁高级数据库功能
|
1月前
|
SQL Java 数据库连接
spring和Mybatis的各种查询
Spring 和 MyBatis 的结合使得数据访问层的开发变得更加简洁和高效。通过以上各种查询操作的详细讲解,我们可以看到 MyBatis 在处理简单查询、条件查询、分页查询、联合查询和动态 SQL 查询方面的强大功能。熟练掌握这些操作,可以极大提升开发效率和代码质量。
65 3
|
2月前
|
SQL 安全 Java
MyBatis-Plus条件构造器:构建安全、高效的数据库查询
MyBatis-Plus 提供了一套强大的条件构造器(Wrapper),用于构建复杂的数据库查询条件。Wrapper 类允许开发者以链式调用的方式构造查询条件,无需编写繁琐的 SQL 语句,从而提高开发效率并减少 SQL 注入的风险。
41 1
MyBatis-Plus条件构造器:构建安全、高效的数据库查询
|
3月前
|
SQL Java 数据库连接
mybatis如何仅仅查询某个表的几个字段
【10月更文挑战第19天】mybatis如何仅仅查询某个表的几个字段
101 1
|
4月前
|
SQL XML Java
mybatis复习04高级查询 一对多,多对一的映射处理,collection和association标签的使用
文章介绍了MyBatis中高级查询的一对多和多对一映射处理,包括创建数据库表、抽象对应的实体类、使用resultMap中的association和collection标签进行映射处理,以及如何实现级联查询和分步查询。此外,还补充了延迟加载的设置和用法。
mybatis复习04高级查询 一对多,多对一的映射处理,collection和association标签的使用
|
3月前
|
Java 数据库连接 容器
Mybatis-Plus核心功能
Mybatis-Plus核心功能
|
4月前
|
SQL 存储 Java
原生JDBC简单实现Mybatis核心功能
本文介绍了在Vertx项目中使用Tdengine时,因缺乏异步JDBC驱动而采用同步驱动结合`vertx.executeBlocking`实现异步查询的方法。文中详细描述了自行开发的一个简易JDBC工具,该工具实现了SQL参数绑定与返回值映射至实体类的功能,简化了原生JDBC的繁琐操作。通过具体示例展示了其实现过程及代码细节,并与原生JDBC进行了对比,突显了其便捷性和实用性。
|
5月前
|
供应链 前端开发 Java
服装库存管理系统 Mybatis+Layui+MVC+JSP【完整功能介绍+实现详情+源码】
该博客文章介绍了一个使用Mybatis、Layui、MVC和JSP技术栈开发的服装库存管理系统,包括注册登录、权限管理、用户和货号管理、库存管理等功能,并提供了源码下载链接。
服装库存管理系统 Mybatis+Layui+MVC+JSP【完整功能介绍+实现详情+源码】