美文网首页
mybatis-plus使用前的配置

mybatis-plus使用前的配置

作者: Leo_23 | 来源:发表于2022-10-09 23:04 被阅读0次

    mybatis-plus使用分页发现没用,结果是没有写配置。。。

    准备工作做好之后,下面来对分页进行一波处理,使用分页的时候,这里强调一下,需要先写一个配置类,可以理解为是一个拦截器。

    package com.leo23.config;
    
    import com.baomidou.mybatisplus.annotation.DbType;
    import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor;
    import com.baomidou.mybatisplus.extension.plugins.inner.PaginationInnerInterceptor;
    import org.springframework.context.annotation.Bean;
    import org.springframework.context.annotation.Configuration;
    
    /**
     * 核心操作
     * 配置MybatisPlus的分页插件
     */
    @Configuration
    public class MyBatisPlusConfig {
        @Bean
        public MybatisPlusInterceptor mybatisPlusInterceptor() {
            MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
            interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
            return interceptor;
        }
    }
    
    

    相关文章

      网友评论

          本文标题:mybatis-plus使用前的配置

          本文链接:https://www.haomeiwen.com/subject/exvnartx.html