要将 QueryWrapper 对象传递给 MyBatis-Plus 的 XML 文件,您可以使用 @Param 注解将其作为参数传递给方法。

下面是一个示例,展示了如何在 MyBatis-Plus 的 XML 文件中接收 QueryWrapper 对象:

首先,在接口中定义查询方法,并使用 @Param 注解将 QueryWrapper 对象传递给方法:

public interface StudentMapper extends BaseMapper<Student> {
    IPage<StudentVO> selectStudent(IPage page, @Param(Constants.WRAPPER) Wrapper queryWrapper);
}

然后,在 XML 文件中使用 ${ew.customSqlSegment} 来接收传递过来的 QueryWrapper 对象。

<?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">
<mapper namespace="com.qhj.dormitory.mapper.StudentMapper">

    <select id="selectStudent" resultType="com.qhj.dormitory.vo.StudentVO" >
        select s.id, s.number, s.name, s.gender, s.dormitory_id dormitoryId, s.state, s.create_date,
               d.name dormitoryName
        from student s
        left join dormitory d on s.dormitory_id = d.id
        ${ew.customSqlSegment}
    </select>
</mapper>

在上述示例中,我们使用了 @Param(Constants.WRAPPER) 注解把 QueryWrapper 对象传递给了 selectUsers 方法,其中 Constants.WRAPPER 是 MyBatis-Plus 中定义的常量,表示传递的是 QueryWrapper 对象。

在 XML 文件中,我们使用 ${ew.customSqlSegment} 来引用传递的 QueryWrapper 对象,customSqlSegment 是 QueryWrapper 的一个方法,用于获取动态 SQL 语句片段。

这样,您就可以在 XML 文件中使用传递的 QueryWrapper 对象进行动态条件查询了。

使用示例:

@Override
    public ResultVO<StudentVO> list(Page page) {
        QueryWrapper queryWrapper = new QueryWrapper();
        queryWrapper.like("s.name","王");
        IPage<StudentVO> pages = this.studentMapper.selectStudent(page, queryWrapper);
        PageVO pageVO = new PageVO();
        pageVO.setData(pages.getRecords());
        pageVO.setTotal(pages.getTotal());
        return ResultVoUtil.success(pageVO);
    }

上述示例中,我们构建了一个 QueryWrapper 对象,并设置了相应的条件。然后,将 QueryWrapper 对象传递给方法进行查询。

注:page不用处理

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐