Difference Between BLOCKED, WAITING, And TIMED_WAITING? - explained through real-life examples

摘要: BLOCKED, WAITING, and TIMED_WAITING are important thread states, but often confusing to many of us. One must have a proper understanding of both in or 阅读全文
posted @ 2018-08-02 11:07 Jed_SH 阅读(191) 评论(0) 推荐(0) 编辑

Java线程的6种状态及切换

摘要: Java中的线程的状态分为6种。 6. 终止(TERMINATED):表示该线程已经执行完毕。 一.线程的状态图 二.初始状态 四.就绪状态 五.运行中状态 六.阻塞状态 七.终止状态 八.等待队列(本是Object里的方法,但影响了线程) 1.线程1获取对象A的锁,正在使用对象A。 2.线程1调用 阅读全文
posted @ 2018-08-02 10:18 Jed_SH 阅读(199) 评论(0) 推荐(0) 编辑

Mac下安装jenkins

摘要: 1.安装brew /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" 安装jenkins 执行 java -jar /usr/local/Cellar/j 阅读全文
posted @ 2018-07-30 09:07 Jed_SH 阅读(259) 评论(0) 推荐(0) 编辑

Mac--Launchctl介绍

摘要: Launchctl 控制OS X系统里的启动进程(launch) 在Mac里有一个命令行工具叫做:launchctl,可以用来控制服务的自动启动或者关闭。一般的语法是sudo launchctl load /path/to/service.plistsudo launchctl unload /pa 阅读全文
posted @ 2018-07-24 11:54 Jed_SH 阅读(9614) 评论(1) 推荐(0) 编辑

数据库弱一致性四个隔离级别

摘要: SQL-92标准中定义了四个隔离级别,这四个隔离级别在以前版本的SQL Server中即受到支持: READ UNCOMMITTED READ UNCOMMITTED是限制性最弱的隔离级别,因为该级别忽略其他事务放置的锁。使用READ UNCOMMITTED级别执行的事务,可以读取尚未由其他事务提交 阅读全文
posted @ 2018-04-08 12:29 Jed_SH 阅读(545) 评论(0) 推荐(0) 编辑

Spring的启动过程

摘要: spring中DispatcherServlet、WebApplicationContext、ServletContext之间的关系 其次,在web.xml中会提供有contextLoaderListener。在web容器启动时,会触发容器初始化事件,此时contextLoaderListener会 阅读全文
posted @ 2017-03-17 10:08 Jed_SH 阅读(221) 评论(0) 推荐(0) 编辑

javaweb学习总结(四)——Http协议

摘要: 转至 http://www.cnblogs.com/xdp-gacl/p/3751277.html 一、什么是HTTP协议 HTTP是hypertext transfer protocol(超文本传输协议)的简写,它是TCP/IP协议的一个应用层协议,用于定义WEB浏览器与WEB服务器之间交换数据的 阅读全文
posted @ 2016-04-20 11:44 Jed_SH 阅读(193) 评论(0) 推荐(0) 编辑