上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 83 下一页
摘要: package com.gzcgxt.erp.test; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import org.junit.Test; public class MapperXML { 阅读全文
posted @ 2019-10-19 23:50 往事只能回味--- 阅读(243) 评论(0) 推荐(0)
摘要: 环境 mysql-connector-java-5.1.21-bin.jar mybatis-generator-core-1.3.7.jar mybatis-3.1.1.jar 1.增加两个类(用于生成字段说明和表说明) EmptyCommentGenerator.java MySQLCommen 阅读全文
posted @ 2019-10-12 17:07 往事只能回味--- 阅读(381) 评论(0) 推荐(0)
摘要: 1.拷贝log4j.jar包 log4j-1.2.14.jar 2.在resources资源文件夹创建一个文件 log4j.properties 内容如下显示 3.测试代码执行 4.运行结果如下 阅读全文
posted @ 2019-09-24 11:45 往事只能回味--- 阅读(226) 评论(0) 推荐(0)
摘要: 相关jar包下载地址 https://mapperhelper.github.io/docs/1.integration/ mybatis通用mapper mapper-4.1.5.jar persistence-api-1.0.jar (通用mapper依赖persistence-api-1.0. 阅读全文
posted @ 2019-09-24 10:45 往事只能回味--- 阅读(843) 评论(0) 推荐(0)
摘要: 1.db.properties数据库配置 2.applicationContext.xml配置文件 3.User对象 4.UserDAO 6.测试代码 阅读全文
posted @ 2019-08-05 16:04 往事只能回味--- 阅读(171) 评论(0) 推荐(0)
摘要: 1.select方法 2.按主键查询 3.查询表中所有的数据 4.查询单条记录 5.根据属性值查询总记录数 6.保存数据 修改 updateByPrimaryKey updateByPrimaryKeySelective 删除 delete deleteByPrimaryKey 阅读全文
posted @ 2019-08-02 17:16 往事只能回味--- 阅读(414) 评论(0) 推荐(0)
摘要: 项目开发中,我们可能需要不动的增加修改表结构,这个时候我们就不停的去维护XxxMapper.xml映射文件 维护起来还是有很大的困难存在 即使现在MBG动态生接口和配置文件,也是很麻烦的事情 所以我们要使用Mybatis通用Mapper接口 好处:不需要程序员去编写sql语句 简单 方便 缺点:你所 阅读全文
posted @ 2019-08-02 16:37 往事只能回味--- 阅读(229) 评论(0) 推荐(0)
摘要: 1.创建一个查询对象 2.映射文件userMapper.xml 3.测试<where>代码 DEBUG [main] - ooo Using Connection [com.mysql.jdbc.JDBC4Connection@8a7b551]DEBUG [main] - ==> Preparing 阅读全文
posted @ 2019-08-02 11:18 往事只能回味--- 阅读(164) 评论(0) 推荐(0)
摘要: 在实际项目开发, 我们的数据表字段和我们的domain对象可能不太一样,所以我们需要借助 ResultMap 标签来封装对象返回数据信息 UserMapper.xml 配置 代码如下 阅读全文
posted @ 2019-08-02 10:39 往事只能回味--- 阅读(147) 评论(0) 推荐(0)
摘要: 1.UserMapper接口代码 2.UserMapper.xml配置文件 3.测试代码-查询 4.测试增加 DEBUG [main] - ooo Using Connection [com.mysql.jdbc.JDBC4Connection@68fd54a6]DEBUG [main] - ==> 阅读全文
posted @ 2019-08-02 10:28 往事只能回味--- 阅读(628) 评论(0) 推荐(0)
上一页 1 ··· 73 74 75 76 77 78 79 80 81 ··· 83 下一页