摘要:
当本地和远端代码有冲突时,解决本地代码和远端一致 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 阅读全文
摘要:
1、https://blog.csdn.net/shuiming6486/article/details/98883187 2、https://www.zhihu.com/question/60949531/answer/579261846 3、https://developer.51cto.com 阅读全文
摘要:
操作ES的chrome插件,强烈推荐: https://chrome.google.com/webstore/detail/ffmkiejjmecolpfloofpjologoblkegm?utm_source=chrome app launcher info dialog https://chro 阅读全文
摘要:
https://www.cnblogs.com/xinglongbing521/p/12240082.html idea各版本下载 https://www.jetbrains.com/idea/download/other.html 阅读全文
摘要:
https://es.xiaoleilu.com/010_Intro/10_Installing_ES.html 阅读全文
摘要:
1、自动填充的字段: createdBy,updatedBy,createdDate,updatedDate /*** 插入使用*/ @Override public void insertFill(MetaObject metaObject) { String operator = "bokai" 阅读全文
摘要:
idea 免安装版下载url: https://www.jetbrains.com/idea/download/other.html 第一个: QYYBAC9D3J-eyJsaWNlbnNlSWQiOiJRWVlCQUM5RDNKIiwibGljZW5zZWVOYW1lIjoi6LaF57qnIOe 阅读全文
摘要:
原文链接:https://blog.csdn.net/zhaoheng314/article/details/81985880 Java实现克隆需要遵循以下规则: 通过Debug观察属性和运行测试类得到的结果,可以发现原始对象stu和克隆对象stu2不是同一对象,但是两个对象的name属性和clas 阅读全文
摘要:
/** * file文件转byte数组 * */public byte[] fileToByte(String filePath){ byte[] data = null; FileInputStream fis = null; ByteArrayOutputStream baos = null; try {... 阅读全文
摘要:
https://github.com/Zack-Ku/spring-ioc-demo 阅读全文