以下是使用 MyBatis-Plus 分页插件的步骤: 1. 引入 MyBatis-Plus 分页插件依赖 首先,你需要在项目的 pom.xml 文件中添加 MyBatis-Plus 的依赖。以下是 Maven 依赖的示例: xml <dependency> <groupId>com.baomidou</groupId> <artifactId>mybatis-plus-boot-starter</...
实现 1. 配置拦截器 @EnableTransactionManagement@Configuration@MapperScan("com.web.member.mapper") public class MybatisPlusConfig {/** * mybatis-plus SQL执行效率插件【生产环境可以关闭】 */@Beanpublic PerformanceInterceptorperformanceInterceptor() {returnnewPerformanceInterceptor(); }/* * 分页插件,自动...