mybatis框架条件查询
时间: 2023-10-21 07:06:32 浏览: 186
在使用MyBatis框架进行条件查询时,我们需要进行以下步骤:
1. 创建学生映射器配置文件。在resources/mapper目录下创建一个名为StudentMapper.xml的配置文件,这个文件将包含我们的查询语句。
2. 编写查询语句。在StudentMapper.xml文件中,我们可以使用<select>标签来编写查询语句。我们可以使用条件语句(如if、where)来设置查询条件,比如姓名、性别和年龄。
3. 运行查询方法。在Java代码中,我们可以调用MyBatis生成的Mapper接口的方法来运行查询。比如,我们可以调用findByCondition()方法,并传入相应的查询条件参数。
举例来说,如果我们想查询姓“吴”,性别为“女”,年龄为19岁的学生记录,我们可以在StudentMapper.xml中编写如下语句:
<select id="findByCondition" parameterType="map" resultType="Student">
SELECT * FROM student
<where>
<if test="name!=null and name!=''">
AND name = #{name}
</if>
<if test="gender!=null and gender!=''">
AND gender = #{gender}
</if>
<if test="age!=null and age!=''">
AND age = #{age}
</if>
</where>
</select>
然后,在Java代码中,我们可以调用findByCondition()方法,并传入相应的查询条件参数,如下所示:
Map<String, Object> condition = new HashMap<>();
condition.put("name", "吴");
condition.put("gender", "女");
condition.put("age", 19);
List<Student> students = studentMapper.findByCondition(condition);
阅读全文