一款用于自动生成 mybatis 相关持久化类和接口的小框架,节省日常开发工作时间...启动方式如下:
/** * 正常启动方法 */ public static void main(String[] args) { MybatisHelper.execute(); }
分页超始页计算 offect = (pageNum - 1) * pageSize; limit=pageSize pom.xml <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper-spring-boot-starter</artifactId> <version>1.2
Caused by: net.sf.jsqlparser.parser.ParseException: Encountered " “INDEX” "INDEX “” at line 71, column 42. Was expecting one of: “JOIN” … “LEFT” … “CROSS” … “FULL” … “WHERE” … “FOR” … “GROUP” … “INNER
首先说下使用. @Override public PageInfo selectDocByPage1(int currentPage, int pageSize) { PageHelper.startPage(currentPage, pageSize); List docs = docMapper.selectByPageAndSelections(); PageInfo pageInfo =
主要了解几个标签属性的作用 statementType 1.有三个值,statement,prepareStatement,callable(调取存储过程) 2.设置,获取的statement的类型 1.paramterType 1.传给sql填充的形参,可以省略 2.useGeneraterKeys = true,keyProperty = javabean属性值(执行插入通常) 1
全局拦截mybatis-Plus 替换HAS_SUB_TABLE_NAME中表名 package com.sumwhy.fly.service.order.center.service.config; import com.baomidou.mybatisplus.extension.plugins.MybatisPlusInterceptor; import com.baomidou.mybat