摘要: ThreadLocal-MDC 应用 log4j.properties log4j.rootLogger=info, stdout, R log4j.appender.stdout=org.apache.log4j.ConsoleAppender log4j.appender.stdout.layo 阅读全文
posted @ 2021-12-10 16:02 04300115116 阅读(73) 评论(0) 推荐(0) 编辑
摘要: @Test public void testThreadState1() throws Exception { Thread thread4TestState = new Thread(new Runnable() { @Override public void run() { try { Thre 阅读全文
posted @ 2021-11-16 20:19 04300115116 阅读(59) 评论(0) 推荐(0) 编辑
摘要: 快速查看ES集群状态 GET _cluster/health { "cluster_name": "elasticsearch", "status": "yellow", "timed_out": false, "number_of_nodes": 1, "number_of_data_nodes" 阅读全文
posted @ 2021-04-18 11:09 04300115116 阅读(1032) 评论(0) 推荐(1) 编辑
摘要: 关于LinkedHashMap维护顺序的一些源码注释 阅读全文
posted @ 2020-11-04 17:15 04300115116 阅读(130) 评论(0) 推荐(0) 编辑
摘要: /** * Acquires in exclusive uninterruptible mode for thread already in * queue. Used by condition wait methods as well as acquire. * * @param node the 阅读全文
posted @ 2020-03-17 15:25 04300115116 阅读(162) 评论(0) 推荐(0) 编辑
摘要: export JAVA_HOME=/usr/java/jdk1.8.0_181export PATH=$JAVA_HOME/bin:$PATHexport CLASSPATH=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib 阅读全文
posted @ 2019-12-17 20:46 04300115116 阅读(140) 评论(0) 推荐(0) 编辑
摘要: 什么时候使用组合索引,什么时候使用单独索引 一.前期数据准备 1.建表 CREATE TABLE `user` ( `uid` int(11) NOT NULL AUTO_INCREMENT, `name` varchar(50) DEFAULT NULL, `pwd` varchar(50) DE 阅读全文
posted @ 2019-10-08 14:57 04300115116 阅读(11638) 评论(1) 推荐(3) 编辑
摘要: 1.首先下载官方的源代码 https://github.com/elasticjob/elastic-job-lite 2.对要使用到的elastic-job-lite-console模块进行mvn install 我这里直接进入到elastic-job-lite-console目录进行mvn in 阅读全文
posted @ 2019-05-18 10:07 04300115116 阅读(3946) 评论(0) 推荐(0) 编辑
摘要: wget http://repo.mysql.com/mysql57-community-release-el7-8.noarch.rpm rpm -ivh mysql57-community-release-el7-8.noarch.rpm yum -y install mysql-server 阅读全文
posted @ 2019-05-14 14:14 04300115116 阅读(211) 评论(0) 推荐(0) 编辑
摘要: 1.查看已经开放的端口 firewall-cmd --list-ports 2.开启指定端口 firewall-cmd --zone=public --add-port=2181/tcp --permanent 3.重启防火墙 firewall-cmd --reload 4.核实下 阅读全文
posted @ 2019-05-14 11:51 04300115116 阅读(11378) 评论(0) 推荐(1) 编辑