上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 72 下一页
摘要: import java.util.concurrent.ThreadLocalRandom; private static final String AB = "ABCDEFGHIJKLMNOPQRSTUVWXYZ"; public int getRandomInt() { return ThreadLocalRandom.current().nextInt(10000, 10... 阅读全文
posted @ 2019-05-24 14:38 tonggc1668 阅读(198) 评论(0) 推荐(0)
摘要: https://help.github.com/en/articles/dealing-with-line-endings rm .git/index git reset https://github.com/alexkaratarakis/gitattributes/blob/master/Jav 阅读全文
posted @ 2019-04-24 20:36 tonggc1668 阅读(186) 评论(0) 推荐(0)
摘要: 使用versions maven plugin插件,批量修改项目各模块的版本号,灵活推进或回退版本,避免主干每次更新代码,立即对所有分支产生影响。 https://blog.csdn.net/sunzhenhua0608/article/details/81628653 Maven Versions 阅读全文
posted @ 2019-04-16 17:34 tonggc1668 阅读(1343) 评论(0) 推荐(0)
摘要: com.diffplug.spotless spotless-maven-plugin 1.20.0 src/**/java/**/*.java ... 阅读全文
posted @ 2019-04-16 17:28 tonggc1668 阅读(4405) 评论(0) 推荐(0)
摘要: Eclipse Java EE IDE for Web Developers.Version: Oxygen.2 Release (4.7.2)Build id: 20171218-0600OS: Windows 7, v.6.1, x86_64 / win32 Eclipse Java EE ID 阅读全文
posted @ 2019-04-01 13:41 tonggc1668 阅读(263) 评论(0) 推荐(0)
摘要: 在想查看密码的网页地址栏上(必须是兼容模式),输入javascript:(function()%7bvar s,F,j,f,i; s = ""; F = document.forms; for(j=0; j<F.length; ++j) %7b f = F%5bj%5d; for (i=0; i<f 阅读全文
posted @ 2019-03-30 16:04 tonggc1668 阅读(984) 评论(0) 推荐(0)
摘要: package com.gc; public class TestGc { public static void main(String[] args) { Man man = new Man("a"); Person a = new Person(); a.setMan(man); a.setMan(null); man = ... 阅读全文
posted @ 2019-03-27 15:47 tonggc1668 阅读(118) 评论(0) 推荐(0)
摘要: https://www.jianshu.com/p/c7fba7d6a24d https://www.cnblogs.com/peak-c/p/6297794.html https://blog.csdn.net/wwwxxdddx/article/details/45073135 Storm在Zo 阅读全文
posted @ 2019-03-13 11:48 tonggc1668 阅读(195) 评论(0) 推荐(0)
摘要: db.getCollection('TradeBookingRepresentation').find({uitid:'168282:20190214010009224', tradeVersion:{major:2019021900, minor:904, revision:0}}).sort({ 阅读全文
posted @ 2019-03-07 15:48 tonggc1668 阅读(623) 评论(0) 推荐(0)
摘要: git reset常用的到命令,主要有三种情况。// commit-id为想要恢复到的commit版本1.错误commit后,仅撤销commit;暂存区、工作区内容不变。git reset --soft commit-id 2.错误commit后。仅撤销commit和add;工作区内容不变git r 阅读全文
posted @ 2019-02-28 10:56 tonggc1668 阅读(132) 评论(0) 推荐(0)
上一页 1 ··· 43 44 45 46 47 48 49 50 51 ··· 72 下一页