2022/10/2

springboot mybaits 使用原生sql查询 不返回实体类

mapper package org.jeecg.modules.wenlv.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.apache.ibatis.annotations.Select; impor…

  • jeecgboot mybatis-plus springboot
  • 2022/10/2
  • 747
  • 2022/7/13

    java.sql.SQLException: Parameter index out of range (1 > number of parameters, which is 0).

    在使用LIKE关键字模糊查找的时候,参数需要使用LIKE '${name}'而不能使用#{name}, ${name}'和#{name}区别: #{name}解析后会产生一个单号,和JDBC里面的PreparedStatement的用法啊一样,向上面这种用…

  • java mybatis-plus springboot
  • 2022/7/13
  • 804
  • 2022/6/17

    QueryWrapper

    QueryWrapper ge(大于等于)、 gt(大于)、 le(小于等于)、 lt(小于)

  • java mybatis-plus springboot
  • 2022/6/17
  • 764
  • 2022/6/7

    mybaits plus 自定义sql使用使用 querywrapper

    xml 添加 ${ew.customSqlSegment} 方法添加 @Param(Constants.WRAPPER) QueryWrapper<StaffBasePage> queryWrapper public IPage<StaffBasePage> selectbysql(Page page,@Par…

  • mybatis-plus
  • 2022/6/7
  • 780
  • 2021/3/11

    mybatis-plus分页查询返回所有数据问题

    新增配置类 /**  *   */ package com.hl.manage.config; import org.springframework.context.annotation.Bean; import org.springframework.context.annotation.Configuration…

  • java mybatis-plus
  • 2021/3/11
  • 1,109