mybatis
别浪呀
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
mybatis--generator自动生成代码
目录 maven项目: 目录结构 pom.xml java类 配置文件: 日志文件log4j.properties maven项目: 目录结构 pom.xml 注意mysql版本,因为我mysql是mysql8 版本的所以sql依赖版本比较高 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:x...原创 2018-12-14 13:45:59 · 296 阅读 · 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 · 3376 阅读 · 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 · 1279 阅读 · 0 评论 -
mybatis--分页插件使用
pom依赖 <dependency> <groupId>com.github.pagehelper</groupId> <artifactId>pagehelper</artifactId> </dependency> <...原创 2019-02-01 17:35:47 · 248 阅读 · 0 评论
分享