上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 24 下一页
  2017年6月14日
摘要: LTS做到分布式唯一执行的原理:LTS采用类似Hadoop作业提交的方式,由JobClient submit作业任务给JobTracker,然后JobTracker会预生成一批作业任务的执行时间记录(落地到MySQL),等到TaskTracker来询问待作业的任务时,将当前待执行的作业任务push到 阅读全文
posted @ 2017-06-14 17:51 快鸟 阅读(1665) 评论(0) 推荐(0)
  2017年6月6日
摘要: <转:http://blog.csdn.net/uniquewonderq/article/details/48113071> <转:http://blog.csdn.net/uniquewonderq/article/details/48113071> 程序举例: 代码: [java] view 阅读全文
posted @ 2017-06-06 18:29 快鸟 阅读(297) 评论(0) 推荐(0)
  2017年4月26日
摘要: http://www.importnew.com/24082.html volatile关键字 http://www.importnew.com/16142.html ConcurrentHashMap原理分析 http://www.importnew.com/19612.html Java内存模型 阅读全文
posted @ 2017-04-26 17:03 快鸟 阅读(249) 评论(0) 推荐(0)
  2017年4月22日
摘要: 线程状态的转换(java.lang.Thread.State 里面有 6 种线程状态): 1、NEW 状态用 new Thread() 建立一个线程对象后,该线程对象就处于 NEW 状态。 2、RUNNABLE 状态通过调用线程的 start() 进入 RUNNABLE 状态。在操作系统层面,对 R 阅读全文
posted @ 2017-04-22 11:03 快鸟 阅读(3483) 评论(0) 推荐(0)
  2017年4月19日
摘要: 在线文档: 动态SQL http://www.mybatis.org/mybatis-3/zh/dynamic-sql.html 1. Error setting null for parameter #19 with JdbcType OTHER 问题: org.springframework.j 阅读全文
posted @ 2017-04-19 15:33 快鸟 阅读(9795) 评论(0) 推荐(0)
  2017年4月18日
摘要: http://aokunsang.iteye.com/blog/2053719 浅谈web应用的负载均衡、集群、高可用(HA)解决方案 http://zhuanlan.51cto.com/art/201612/524201.htm 互联网架构“高可用”http://www.blogjava.net/ 阅读全文
posted @ 2017-04-18 11:17 快鸟 阅读(12541) 评论(0) 推荐(0)
  2017年3月28日
摘要: 一、启动dubbo借助spring的schemas来启动(dubbo.jar/META-INF/spring.schemas)。在dubbo.jar/META-INF/spring.handlers里配置了dubbo bean的解析类DubboNamespaceHandler。主要的有Service 阅读全文
posted @ 2017-03-28 15:46 快鸟 阅读(722) 评论(0) 推荐(0)
  2017年3月17日
摘要: 1. 分布式锁 http://www.hollischuang.com/archives/1716 http://www.cnblogs.com/green-hand/p/5687611.html 分布式的CAP理论告诉我们“任何一个分布式系统都无法同时满足一致性(Consistency)、可用性( 阅读全文
posted @ 2017-03-17 12:22 快鸟 阅读(972) 评论(0) 推荐(0)
  2017年2月27日
摘要: https://www.cnblogs.com/Katerina/p/11459135.html 数据库事务隔离级别:4 种 (http://www.cnblogs.com/fjdingsd/p/5273008.html)read uncommitted --> read committed --> 阅读全文
posted @ 2017-02-27 18:12 快鸟 阅读(236) 评论(0) 推荐(0)
  2017年2月16日
摘要: 在使用spring+springMVC的web工程中,我们一般会在web.xml中做如下配置: <context-param> <param-name>contextConfigLocation</param-name> <param-value>classpath:application.xml< 阅读全文
posted @ 2017-02-16 11:00 快鸟 阅读(6898) 评论(0) 推荐(2)
上一页 1 ··· 8 9 10 11 12 13 14 15 16 ··· 24 下一页