草庐IT

MybatisPlusInterceptor

全部标签

详解Mybatis-Plus中分页插件PaginationInterceptor, MybatisPlusInterceptor在SpringBoot中的使用

文章目录1.描述1.1MybatisPlusInterceptor1.2InnerInterceptor2.实现2.1不带条件的分页查询2.2带条件的分页查询2.3简述Page类3.注意事项3.1UncategorizedSQLException异常3.2不做记录总数的统计1.描述1.1MybatisPlusInterceptor我们在开发的过程中,经常会遇到分页操作,其分为逻辑分页和物理分页,具体可参考我的博文:逻辑分页和物理分页如果你用的是Mybatis-Plus框架,可用MybatisPlusInterceptor按如下配置分页代码:/***@author念兮为美*@datetime20

详解Mybatis-Plus中分页插件PaginationInterceptor, MybatisPlusInterceptor在SpringBoot中的使用

文章目录1.描述1.1MybatisPlusInterceptor1.2InnerInterceptor2.实现2.1不带条件的分页查询2.2带条件的分页查询2.3简述Page类3.注意事项3.1UncategorizedSQLException异常3.2不做记录总数的统计1.描述1.1MybatisPlusInterceptor我们在开发的过程中,经常会遇到分页操作,其分为逻辑分页和物理分页,具体可参考我的博文:逻辑分页和物理分页如果你用的是Mybatis-Plus框架,可用MybatisPlusInterceptor按如下配置分页代码:/***@author念兮为美*@datetime20