摘要: @Component public class ZKLeaderLatch { private static CuratorFramework zkClient; private static LeaderLatch leaderLatch; public ZKLeaderLatch(@Value( 阅读全文
posted @ 2019-12-11 18:20 1192371135 阅读(586) 评论(0) 推荐(0) 编辑
摘要: @Configuration public class ScheduleConfig implements SchedulingConfigurer { @Override public void configureTasks(ScheduledTaskRegistrar taskRegistrar 阅读全文
posted @ 2019-12-11 18:17 1192371135 阅读(4137) 评论(0) 推荐(0) 编辑
摘要: >/dev/null 2>&1shell中经常能看到:>/dev/null 2>&1命令的结果可以通过%>的形式来定义输出分解这个组合:“>/dev/null 2>&1”为五部分1:>代表重定向到哪里,例如:echo "123" > /home/123.txt2: /dev/null代表空设备文件3 阅读全文
posted @ 2019-10-16 15:05 1192371135 阅读(96) 评论(0) 推荐(0) 编辑
摘要: var ajax = { abort: function () {} //定义一个空的方法, 是为了下面ajax.abort()不报错 }; setInterval(function () { ajax.abort(); //每次提交前, 先放弃上一次ajax的提交, 这样就不会同时有多个ajax正 阅读全文
posted @ 2019-10-15 15:16 1192371135 阅读(278) 评论(0) 推荐(0) 编辑
摘要: //ACCESS_TOKEN@JsonProperty(value = "access_token")private String accessToken;//过期时间,单位为秒@JsonProperty(value = "expires_in")private long expiresIn;//R 阅读全文
posted @ 2019-10-15 14:39 1192371135 阅读(218) 评论(0) 推荐(0) 编辑
摘要: var audio = document.getElementById("myAudio");var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串var isIE = userAgent.indexOf("compatible") > - 阅读全文
posted @ 2019-10-15 14:32 1192371135 阅读(710) 评论(0) 推荐(1) 编辑
摘要: 过滤器中起关键作用的2个类:ApplicationFilterConfig、ApplicationFilterChain 阅读全文
posted @ 2019-10-15 12:07 1192371135 阅读(1136) 评论(0) 推荐(0) 编辑
摘要: 配置Redis作为缓存(六种淘汰策略)将Redis用做缓存时,如果内存空间用满,就会自动驱逐老的数据。LRU是Redis唯一支持的回收算法,本文详细介绍用于限制最大内存使用量的maxmemory指令,并深入讲解Redis所使用的近似LRU算法。maxmemory配置指令maxmemory用于Redi 阅读全文
posted @ 2019-10-15 10:33 1192371135 阅读(18314) 评论(0) 推荐(0) 编辑
摘要: 总结:1、根据端口号查进程pidlsof -i:portnetstat -nap|grep port2、根据进程号查端口netstat -nap|grep pid3、根据进程pid查看服务路径ps -ef|grep java 查看进程pidll /proc/pid/cwd 查看服务安装路径 阅读全文
posted @ 2019-10-15 10:31 1192371135 阅读(24446) 评论(0) 推荐(0) 编辑
摘要: zookeeper中节点分为两种:临时节点和永久节点临时节点有一个节点:当创建临时节点的程序停掉之后,这个临时节点就会消失。persistent 是永久节点persistent_sequential 是永久有序节点ephemeral 是临时节点ephemeral_sequential 是临时顺序节点 阅读全文
posted @ 2019-10-15 10:31 1192371135 阅读(1159) 评论(0) 推荐(0) 编辑