
mybatis
别浪呀
这个作者很懒,什么都没留下…
展开
-
mybatis--generator自动生成代码
目录maven项目:目录结构pom.xmljava类配置文件:日志文件log4j.propertiesmaven项目:目录结构pom.xml注意mysql版本,因为我mysql是mysql8 版本的所以sql依赖版本比较高<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:x...原创 2018-12-14 13:45:59 · 243 阅读 · 0 评论 -
mybatis--insert语句id回显
mapper.xml <insert id="insert" parameterType="cn.bufanli.pojo.TbGoods" > <selectKey keyProperty='id' resultType='java.lang.Long' order='AFTER' > select LAST_INSERT_ID(...原创 2019-03-15 10:43:39 · 3308 阅读 · 0 评论 -
mybatis-- 批量更新,批量修改
<update id="updateNotificationRecording" parameterType="java.util.List"> <foreach collection="notificationRecordings" item="item" index="index" open="" close="" separator=";"> ...原创 2019-02-22 19:24:17 · 997 阅读 · 0 评论 -
mybatis--分页插件使用
pom依赖 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> </dependency> <...原创 2019-02-01 17:35:47 · 224 阅读 · 0 评论