摘要: 当本地和远端代码有冲突时,解决本地代码和远端一致 1、git pull 2、git log -1 拿到commit的HEAD 3、git reset (前一步拿到的HEAD) --hard 4、git status 查看状态 5、git clean -dfx 清除 6、git status 7、gi 阅读全文
posted @ 2020-05-27 15:15 love_xiaosha 阅读(122) 评论(0) 推荐(0) 编辑
摘要: 1、https://blog.csdn.net/shuiming6486/article/details/98883187 2、https://www.zhihu.com/question/60949531/answer/579261846 3、https://developer.51cto.com 阅读全文
posted @ 2020-03-12 15:23 love_xiaosha 阅读(118) 评论(0) 推荐(0) 编辑
摘要: 操作ES的chrome插件,强烈推荐: https://chrome.google.com/webstore/detail/ffmkiejjmecolpfloofpjologoblkegm?utm_source=chrome app launcher info dialog https://chro 阅读全文
posted @ 2020-03-06 10:28 love_xiaosha 阅读(177) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/xinglongbing521/p/12240082.html idea各版本下载 https://www.jetbrains.com/idea/download/other.html 阅读全文
posted @ 2020-02-27 14:26 love_xiaosha 阅读(74) 评论(0) 推荐(0) 编辑
摘要: https://es.xiaoleilu.com/010_Intro/10_Installing_ES.html 阅读全文
posted @ 2020-01-21 15:58 love_xiaosha 阅读(136) 评论(0) 推荐(0) 编辑
摘要: 1、自动填充的字段: createdBy,updatedBy,createdDate,updatedDate /*** 插入使用*/ @Override public void insertFill(MetaObject metaObject) { String operator = "bokai" 阅读全文
posted @ 2020-01-07 15:39 love_xiaosha 阅读(15099) 评论(0) 推荐(0) 编辑
摘要: idea 免安装版下载url: https://www.jetbrains.com/idea/download/other.html 第一个: QYYBAC9D3J-eyJsaWNlbnNlSWQiOiJRWVlCQUM5RDNKIiwibGljZW5zZWVOYW1lIjoi6LaF57qnIOe 阅读全文
posted @ 2020-01-06 14:37 love_xiaosha 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 原文链接:https://blog.csdn.net/zhaoheng314/article/details/81985880 Java实现克隆需要遵循以下规则: 通过Debug观察属性和运行测试类得到的结果,可以发现原始对象stu和克隆对象stu2不是同一对象,但是两个对象的name属性和clas 阅读全文
posted @ 2019-09-25 14:18 love_xiaosha 阅读(158) 评论(0) 推荐(0) 编辑
摘要: /** * file文件转byte数组 * */public byte[] fileToByte(String filePath){ byte[] data = null; FileInputStream fis = null; ByteArrayOutputStream baos = null; try {... 阅读全文
posted @ 2019-09-24 16:57 love_xiaosha 阅读(169) 评论(0) 推荐(0) 编辑
摘要: https://github.com/Zack-Ku/spring-ioc-demo 阅读全文
posted @ 2019-09-12 14:29 love_xiaosha 阅读(111) 评论(0) 推荐(0) 编辑