上一页 1 2 3 4 5 6 ··· 23 下一页
摘要: 参考:https://zhuanlan.zhihu.com/p/427358291 阅读全文
posted @ 2022-05-25 15:34 npe0 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 参考 阅读全文
posted @ 2022-05-25 14:49 npe0 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 参考:https://zhuanlan.zhihu.com/p/375282954 阅读全文
posted @ 2022-05-25 14:48 npe0 阅读(30) 评论(0) 推荐(0) 编辑
摘要: ``` SHOW VARIABLES LIKE '%slow%'; SHOW GLOBAL STATUS LIKE '%slow%'; SHOW PROCESSLIST; SHOW VARIABLES LIKE 'max_connections'; SHOW GLOBAL STATUS LIKE ' 阅读全文
posted @ 2022-05-25 14:44 npe0 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 键盘空格的ASCII码为32 不间断空格(html页面上是 )的ASCII码为160 用普通的replaceAll("\\s*","")是无法剔除的 需要使用unicode码\u00A0来做移除即为replaceAll("\\u00A0","") 阅读全文
posted @ 2022-05-22 23:38 npe0 阅读(33) 评论(0) 推荐(0) 编辑
摘要: public class WebConfigUtil { public static final String YML_NAME = "application.yml"; private static Properties readProperties(String... confFile) { f 阅读全文
posted @ 2022-05-16 16:49 npe0 阅读(337) 评论(0) 推荐(0) 编辑
摘要: https://cloud.tencent.com/developer/article/1862618 阅读全文
posted @ 2022-04-19 10:23 npe0 阅读(15) 评论(0) 推荐(0) 编辑
摘要: swagger是干嘛的不是本说明介绍的内容,请自行百度。 本说明旨在快速上手使用swagger生成接口文档,swagger3真香!!! 一、依赖 添加依赖和spring-boot-starter-parent的版本有关,自动引入的spring-plugin-core包版本不一致会导致项目跑不起来,这 阅读全文
posted @ 2020-10-26 18:06 npe0 阅读(9325) 评论(0) 推荐(2) 编辑
摘要: 一、synchronized实现 package com.duchong.queue; /** * @author DUCHONG * @since 2020-09-17 18:23 **/ public class SynchronizedDemo { //对象锁 static Object lo 阅读全文
posted @ 2020-10-09 10:34 npe0 阅读(214) 评论(0) 推荐(0) 编辑
摘要: yum install ntpdate ntpdate -u cn.pool.ntp.org 阅读全文
posted @ 2020-09-22 09:31 npe0 阅读(241) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 ··· 23 下一页