MyBatis_select_返回List

  • Post author:
  • Post category:其他


  • select元素

    • Select元素来定义查询操作
    • Id:唯一标识符

      • 用来引用这条语句,需要和接口的方法名一致
    • parameterType:参数类型

      • 可以不传,MyBatis会根据TypeHandler自动推断
    • resultType:返回值类型

      • 别名或者全类名,如果返回的是集合,定义集合中元 素的类型。不能和resultMap同时使用



EmployeeMapper.java

中写方法:

public List<Employee> getEmpsByLastNameLike(String lastName);

然后在

mybatis-config.xml

中实现:

    <!-- public List<Employee> getEmpsByLastNameLike(String lastName); -->
    <!--resultType:如果返回的是一个集合,要写集合中元素的类型  -->
    <select id="getEmpsByLastNameLike" resultType="com.atguigu.mybatis.bean.Employee">
        select * from tbl_employee where last_name like #{lastName}
    </select>

测试:

按照名字模糊查询,查询名字中带

e

字母的

EmployeeMapper mapper = openSession.getMapper(EmployeeMapper.class);
List<Employee> like = mapper.getEmpsByLastNameLike("%e%");
for (Employee employee : like) {                
    System.out.println(employee);
            }

结果:

这里写图片描述