03 2021 档案

摘要:du -h --max-depth=1 阅读全文
posted @ 2021-03-18 10:03 DiligentCoder 阅读(93) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/ws_kfxd/article/details/85858736 https://blog.csdn.net/qq_35098526/article/details/84335030 阅读全文
posted @ 2021-03-17 18:15 DiligentCoder 阅读(65) 评论(0) 推荐(0)
摘要:流程分析: https://blog.csdn.net/bluuusea/article/details/80284458 会生成新的access_token: https://blog.csdn.net/Hyaloidz/article/details/109146229 https://www. 阅读全文
posted @ 2021-03-17 10:48 DiligentCoder 阅读(390) 评论(0) 推荐(0)
摘要:https://gitee.com/xinxi17_admin/SpringBoot_Shiro_JWT_Redis 阅读全文
posted @ 2021-03-15 19:03 DiligentCoder 阅读(721) 评论(0) 推荐(0)
摘要:https://www.renren.io/ https://gitee.com/renrenio https://www.cnblogs.com/shoufu/p/11803010.html 不错的博客 阅读全文
posted @ 2021-03-15 18:55 DiligentCoder 阅读(48) 评论(0) 推荐(0)
摘要:https://blog.csdn.net/qq_36497454/article/details/78315269 阅读全文
posted @ 2021-03-13 15:43 DiligentCoder 阅读(260) 评论(0) 推荐(0)
摘要:https://www.pianshen.com/article/6728344640/ 阅读全文
posted @ 2021-03-13 13:58 DiligentCoder 阅读(692) 评论(0) 推荐(0)
摘要:http://www.likecs.com/show-113117.html 阅读全文
posted @ 2021-03-13 11:06 DiligentCoder 阅读(110) 评论(0) 推荐(0)
摘要:前言 Linux版本:CentOS 7.6 x64位 MySQL版本: 8.0.22-el7-x86_64 去年十一月份不到一百块买的阿里云的ECS服务器到期了,续费太贵了。直接又在腾讯云上买了个88一年的,反正是自己的项目,将就着用吧。 1. 去MySQL官网下载安装包 2. 查看系统是否已经安装 阅读全文
posted @ 2021-03-12 11:00 DiligentCoder 阅读(153) 评论(1) 推荐(0)
摘要:1修改数据库为紧急模式ALTER DATABASE Test SET EMERGENCY2使数据库变为单用户模式ALTER DATABASE Test SET SINGLE_USER3修复数据库日志重新生成,此命令检查的分配,结构,逻辑完整性和所有数据库中的对象错误,这个过程时间可能比较长。DBCC 阅读全文
posted @ 2021-03-11 16:11 DiligentCoder 阅读(99) 评论(0) 推荐(0)
摘要:String转Long的两种方法 1、Long.valueOf("String")返回Long包装类型 2、Long.parseLong("String")返回long基本数据类型 String类型时间转Long类型时间戳 String time = ""; Long timestamp = new 阅读全文
posted @ 2021-03-10 14:37 DiligentCoder 阅读(4098) 评论(0) 推荐(0)
摘要:https://shentuzhigang.blog.csdn.net/article/details/105206278 阅读全文
posted @ 2021-03-08 11:32 DiligentCoder 阅读(371) 评论(0) 推荐(0)
摘要:http://www.pdfdo.com/pdf-to-word.aspx 阅读全文
posted @ 2021-03-07 16:56 DiligentCoder 阅读(93) 评论(0) 推荐(0)
摘要:https://www.cnblogs.com/laumians-notes/p/9069498.html 阅读全文
posted @ 2021-03-06 14:34 DiligentCoder 阅读(72) 评论(0) 推荐(0)
摘要:首先维护一张两点之间的表 tmp: | a | b | | | | | 1 | 2 | insert into tmp select * from tmp t where not exists ( select 1 from tmp where t.b=# and t.a=# ) and not e 阅读全文
posted @ 2021-03-02 11:36 DiligentCoder 阅读(484) 评论(0) 推荐(0)
摘要:语句 ALTER TABLE t_test ALTER COLUMN nickname SET DEFAULT ‘刘德华’; 阅读全文
posted @ 2021-03-01 12:46 DiligentCoder 阅读(278) 评论(0) 推荐(0)