上一页 1 2 3 4 5 6 7 ··· 9 下一页
摘要: 解析配置文件 配置mybatis-config.xml <?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybati 阅读全文
posted @ 2020-09-15 17:27 尘世的流浪人 阅读(166) 评论(0) 推荐(0) 编辑
摘要: Mybatis 启动流程 @Before public void init() throws IOException { String resouce = "mybatis-config.xml"; /** * 读取 mybatis文件,返回的是 InputStream流 */ InputStrea 阅读全文
posted @ 2020-09-15 16:45 尘世的流浪人 阅读(131) 评论(0) 推荐(0) 编辑
摘要: 结构图 阅读全文
posted @ 2020-09-11 14:12 尘世的流浪人 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 分享大佬文章: https://www.hollischuang.com/archives/5014 阅读全文
posted @ 2020-09-04 16:00 尘世的流浪人 阅读(870) 评论(0) 推荐(0) 编辑
摘要: 参考博文写的很详细,就不在重复写了 参考:https://www.jianshu.com/p/541874714907 注意事项: 如果UserMapper.xml放在java目录下,则maven依赖中必须加上resource <build> <resources> <!-- 这表示加载java目录 阅读全文
posted @ 2020-08-28 16:00 尘世的流浪人 阅读(169) 评论(0) 推荐(0) 编辑
摘要: UserInfo.java @Data public class UserInfo implements Serializable { private static final long serialVersionUID = 1L; /** * 数据库字段信息:name_str VARCHAR(20 阅读全文
posted @ 2020-08-28 15:58 尘世的流浪人 阅读(933) 评论(0) 推荐(0) 编辑
摘要: 线程池的方法 /** * Executes the given command at some time in the future. The command * may execute in a new thread, in a pooled thread, or in the calling * 阅读全文
posted @ 2020-08-17 21:25 尘世的流浪人 阅读(220) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/qq_31247573/article/details/104628825 阅读全文
posted @ 2020-08-11 19:22 尘世的流浪人 阅读(2780) 评论(0) 推荐(0) 编辑
摘要: https://www.jb51.net/article/186016.htm 阅读全文
posted @ 2020-08-10 09:42 尘世的流浪人 阅读(218) 评论(0) 推荐(0) 编辑
摘要: 1.使用csv或txt导入,前提是文件没有被加密 https://blog.csdn.net/crazyh2/article/details/52120947 2.使用excel生成sql 语句,然后导入。 https://www.cnblogs.com/wanthune/p/13450793.ht 阅读全文
posted @ 2020-08-07 09:43 尘世的流浪人 阅读(759) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 9 下一页