文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

MybatisPlusInterceptor实现sql拦截器(超详细)

2023-08-31 18:47

关注

1 . 导入pom

                    com.baomidou            mybatis-plus-boot-starter            3.4.2            

2 . 配置下MybatisPlus的yml

mybatis-plus:  mapper-locations:  - classpath:mapper/*/*Mapper.xml    global-config:    db-config:      id-type: auto    banner: true  configuration:    log-impl: org.apache.ibatis.logging.stdout.StdOutImpl

3 . 实体类

@Data@TableName("sys_user")@ApiModel(value = "SysUser对象", description = "用户信息")public class SysUser implements Serializable {    @TableId("SU_CODE")    @ApiModelProperty(value = "用户编码")    private String suCode;    @TableField("SUS_CODE")    @ApiModelProperty(value = "分类编码")    private String susCode;    @TableField("SU_NAME")    @ApiModelProperty(value = "用户姓名")    private String suName;    @TableField("SU_SEX")    @ApiModelProperty(value = "性别:0未知,1男,2女")    private Integer suSex;    @TableField("SU_AGE")    @ApiModelProperty(value = "年龄")    private Integer suAge;}

4 .  DTO

@Data@ApiModel(value = "SysUserDTO对象", description = "用户信息DTO")public class SysUserDTO {    @ApiModelProperty(value = "用户编码")    private String suCode;    @ApiModelProperty(value = "分类编码")    private String susCode;    @ApiModelProperty(value = "用户姓名")    private String suName;    @ApiModelProperty(value = "性别:0未知,1男,2女")    private Integer suSex;    @ApiModelProperty(value = "年龄")    private Integer suAge;    private Integer page = 1;    private Integer limit = 10;}

5 . MybatisPlus的config

import cn.hutool.core.util.ArrayUtil;import com.baomidou.mybatisplus.annotation.DbType;import com.baomidou.mybatisplus.autoconfigure.ConfigurationCustomizer;import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;import com.baomidou.mybatisplus.extension.plugins.handler.TenantLineHandler;import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;import com.baomidou.mybatisplus.extension.plugins.inner.TenantLineInnerInterceptor;import lombok.extern.slf4j.Slf4j;import net.sf.jsqlparser.expression.Expression;import net.sf.jsqlparser.expression.LongValue;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;@Slf4j@Configurationpublic class MybatisPlusConfig {    @Bean    public MybatisPlusInterceptor mybatisPlusInterceptor() {        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();        log.info("进入sql拦截器");        //分页拦截器插件        //如果用了分页插件注意先 add TenantLineInnerInterceptor 再 add PaginationInnerInterceptor        interceptor.addInnerInterceptor(new TenantLineInnerInterceptor(new TenantLineHandler() {            //租户id(拼接sql的条件的值)            @Override            public Expression getTenantId() {                return new LongValue(1);            }            //追加的字段(拼接sql的条件)            @Override            public String getTenantIdColumn() {                return "SU_CODE";            }            //去掉实体类字段            @Override            public boolean ignoreTable(String tableName) {                String[] arr = new String[]{                        "susCode",                        "suName",                        "suSex",                        "suAge"                };                return ArrayUtil.contains(arr, tableName);            }        }));        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));        return interceptor;    }    // 用了分页插件必须设置 MybatisConfiguration#useDeprecatedExecutor = false    //        interceptor.addInnerInterceptor(new PaginationInnerInterceptor());    @Bean    public ConfigurationCustomizer configurationCustomizer() {        return configuration -> configuration.setUseDeprecatedExecutor(false);    }}

6 . controller

@RestController@RequestMapping("exam")public class SysUserController {    @Autowired    private SysUserService sysUserService;    @RequestMapping("list")    public IPage list(SysUserDTO userDTO) {        IPage page = new Page<>(userDTO.getPage(), userDTO.getLimit());        return sysUserService.page(page);    }}

7 . 测试

 成功实现sql拦截并进行拼接

来源地址:https://blog.csdn.net/a17331003724/article/details/130005913

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯