mybatis-plus 排序失效

需要在配置类中添加

 @Bean
    public MybatisPlusInterceptor mybatisPlusInterceptor() {
        MybatisPlusInterceptor interceptor = new MybatisPlusInterceptor();
        interceptor.addInnerInterceptor(new PaginationInnerInterceptor(DbType.MYSQL));
        return interceptor;
    }

你可能感兴趣的:(开发报错记录,mybatis,java,mysql)