文章列表

jxl读取Excel不能超过3位小数解决办法

作者:Happy生龙

在用jxl 这个包读取excel的单元格的内容的时候,用如下语句: String text = cell.getContents(); 如果是数字,只能得到3位小数,超过的部分,会四舍五入。 解决的办法就是: 1. 把单元格的格式设置为数字,并留出足够长的小数位。 2. 第一种方法虽然有效,但是显得麻烦,可以通过下面方法得到正确的数字: if(cell.getType() == CellType.NUMBER){ NumberCell numberCell = (NumberCell) cell; double value =numberCell.getValue(); NumberFormat nf=NumberFormat.getInstance(); nf.setMaximumFractionDigits(4);//保留4位小数 nf.setRoundingMode(RoundingMode.HALF_UP); /* * 如果想输出的格式用逗号隔开,可以设置成true */ nf.setGroupingUsed(false); text=nf.format(value); }

MySQL 大分页查询的优化之道

作者:微信小助手

<section powered-by="xiumi.us" style="white-space: normal;"> <section> <section> <section> <p style="text-align: center;"><img class="" data-copyright="0" data-cropselx1="0" data-cropselx2="548" data-cropsely1="0" data-cropsely2="365" data-ratio="0.665625" src="/upload/8407feaffccf1379278dd642c8f8b679.jpg" data-type="jpeg" data-w="640" style="height: 365px;color: rgb(80, 97, 109);font-family: Helvetica, Arial, sans-serif;font-size: 15px;text-align: start;box-sizing: border-box;border-width: 2px;border-style: solid;border-color: rgb(238, 238, 238);border-radius: 6px;width: 548px;"></p> </section> </section> </section> </section> <section powered-by="xiumi.us" style="white-space: normal;box-sizing: border-box;"> <section style="box-sizing: border-box;"> <section style="padding: 10px;display: inline-block;width: 556px;border-width: 0px 10px 0px 0px;border-style: solid;border-left-color: rgb(249, 110, 87);border-right-color: rgb(249, 110, 87);box-sizing: border-box;"> <section powered-by="xiumi.us" style="box-sizing: border-box;"> <section style="box-sizing: border-box;"> <section style="text-align: right;color: rgb(95, 156, 239);font-size: 12px;box-sizing: border-box;"> <p style="box-sizing: border-box;"><span style="font-family: -apple-system-font, BlinkMacSystemFont, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei UI&quot;, &quot;Microsoft YaHei&quot;, Arial, sans-serif;">yangyidba | 作者</span></p> </section> </section> </section> </section> </section> </section> <section powered-by="xiumi.us" style="white-space: normal;"> <section> <section> <p style="margin-top: 15px;margin-bottom: 15px;box-sizing: border-box;color: rgb(80, 97, 109);font-family: Helvetica, Arial, sans-serif;font-size: 15px;text-align: start;"><span style="background-color: rgb(255, 255, 255);color: rgb(21, 153, 87);font-family: Menlo, Monaco, &quot;Source Code Pro&quot;, Consolas, Inconsolata, &quot;Ubuntu Mono&quot;, &quot;DejaVu Sans Mono&quot;, &quot;Courier New&quot;, &quot;Droid Sans Mono&quot;, &quot;Hiragino Sans GB&quot;, 微软雅黑, monospace;font-size: 20px;letter-spacing: 0.544px;">一 背景</span></p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">大部分开发和DBA同行都对分页查询非常非常了解,看帖子翻页需要分页查询,搜索商品也需要分页查询。那么问题来了,遇到上千万或者上亿的数据量怎么快速的拉取全量,比如大商家拉取每月千万级别的订单数量到自己独立的ISV做财务统计;或者拥有百万千万粉丝的公众大号,给全部粉丝推送消息的场景。本文讲讲个人的优化分页查询的经验,抛砖引玉。</p> <h3 style="margin-top: 1.5rem;margin-bottom: 1rem;font-size: 20px;max-width: 100%;box-sizing: border-box;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);color: rgb(21, 153, 87);line-height: 1.35;text-align: start;overflow-wrap: break-word !important;font-family: Menlo, Monaco, &quot;Source Code Pro&quot;, Consolas, Inconsolata, &quot;Ubuntu Mono&quot;, &quot;DejaVu Sans Mono&quot;, &quot;Courier New&quot;, &quot;Droid Sans Mono&quot;, &quot;Hiragino Sans GB&quot;, 微软雅黑, monospace !important;">二 分析</h3> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">在讲如何优化之前我们先来看看一个比较常见错误的写法</p> <pre class="" style="padding-top: 8px;padding-bottom: 6px;max-width: 100%;box-sizing: border-box;letter-spacing: 0.544px;background: rgb(241, 239, 238);border-radius: 0px;overflow-y: auto;color: rgb(80, 97, 109);text-align: start;font-size: 10px;line-height: 12px;overflow-wrap: break-word !important;font-family: consolas, menlo, courier, monospace, &quot;Microsoft Yahei&quot;!important;border-width: 1px !important;border-style: solid !important;border-color: rgb(226, 226, 226) !important;"> <ol class=" list-paddingleft-2" style="list-style-type: none;"> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">SELECT </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">*</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> FROM table</span></code></span></span></p></li> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(102, 102, 234);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">where</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> kid</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">=</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">1342</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(102, 102, 234);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">and</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> type</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">=</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">1</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> order id asc limit </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">149420</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">20</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">;</span></code></span></span></p></li> </ol></pre> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">该SQL是一个非常典型的排序+分页查询:</p> <blockquote style="margin-bottom: 1.2em;padding: 15px 15px 15px 1rem;border-left-width: 6px;border-left-color: rgb(220, 230, 240);color: rgb(129, 145, 152);line-height: 22px;font-size: 14px;max-width: 100%;box-sizing: border-box;letter-spacing: 0.544px;background: rgb(242, 247, 251);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;"> <p style="max-width: 100%;box-sizing: border-box;min-height: 1em;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);overflow-wrap: break-word !important;">order by col limit N,M</p> </blockquote> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">MySQL 执行此类SQL时需要先扫描到N行,然后再去取M行。对于此类操作,获取前面少数几行数据会很快,但是随着扫描的记录数越多,SQL的性能就会越差,因为N的值越大,MySQL需要扫描越多的数据来定位到具体的N行,这样耗费大量的 IO 成本和时间成本。一图胜千言,我们使用简单的图来解释为什么 上面的sql 的写法扫描数据会慢。</p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">t 表是一个索引组织表,key idx<span style="max-width: 100%;box-sizing: border-box;overflow-wrap: break-word !important;">kid</span>type(kid,type) 。</p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;"><img class="" data-backh="700" data-backw="350" data-ratio="2" data-s="300,640" data-type="png" data-w="350" src="/upload/706398256bd9de599c62c661eee80851.png" style="white-space: normal;box-sizing: border-box !important;overflow-wrap: break-word !important;width: 556px !important;visibility: visible !important;"></p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">符合kid=3 and type=1 的记录有很多行,我们取第 9,10行。</p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">select * from t where kid =3 and type=1 order by id desc 8,2;</p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">MySQL 是如何执行上面的sql 的?对于Innodb表,系统是根据 idx<span style="max-width: 100%;box-sizing: border-box;overflow-wrap: break-word !important;">kid</span>type 二级索引里面包含的主键去查找对应的行。对于百万千万级别的记录而言,索引大小可能和数据大小相差无几,cache在内存中的索引数量有限,而且二级索引和数据叶子节点不在同一个物理块儿上存储,二级索引与主键的相对无序映射关系,也会带来大量的随机IO请求,N值越大越需要遍历大量索引页和数据叶,需要耗费的时间就越久。</p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;"><img class="" data-backh="700" data-backw="350" data-ratio="2" data-s="300,640" data-type="png" data-w="350" src="/upload/d75992d8131335bdd9c8e8f09f24d765.png" style="white-space: normal;box-sizing: border-box !important;overflow-wrap: break-word !important;width: 556px !important;visibility: visible !important;"></p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">鉴于上面的大分页查询耗费时间长的原因,我们思考一个问题,是否需要完全遍历“无效的数据”?如果我们需要limit 8,2;我们跳过前面8行无关的数据页遍历,可以直接通过索引定位到第9,第10行,这样操作是不是更快了?依然是一图胜千言,通过这其实也是 延迟关联的 核心思思:<span style="max-width: 100%;color: rgb(255, 0, 0);box-sizing: border-box !important;overflow-wrap: break-word !important;"><strong style="max-width: 100%;box-sizing: border-box !important;overflow-wrap: break-word !important;">通过使用覆盖索引查询返回需要的主键,再根据主键关联原表获得需要的数据,而不是通过二级索引获取主键再通过主键去遍历数据页。</strong></span></p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;"><img class="" data-backh="700" data-backw="350" data-ratio="2" data-s="300,640" data-type="png" data-w="350" src="/upload/75dd5152db712102ea1de9c48451cc18.png" style="white-space: normal;box-sizing: border-box !important;overflow-wrap: break-word !important;width: 556px !important;visibility: visible !important;"></p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">通过上面的原理分析,我们知道通过常规方式进行大分页查询慢的原因,也知道了提高大分页查询的具体方法 ,下面我们讨论一下在线上业务系统中常用的解决方法。</p> <h3 style="margin-top: 1.5rem;margin-bottom: 1rem;font-size: 20px;max-width: 100%;box-sizing: border-box;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);color: rgb(21, 153, 87);line-height: 1.35;text-align: start;overflow-wrap: break-word !important;font-family: Menlo, Monaco, &quot;Source Code Pro&quot;, Consolas, Inconsolata, &quot;Ubuntu Mono&quot;, &quot;DejaVu Sans Mono&quot;, &quot;Courier New&quot;, &quot;Droid Sans Mono&quot;, &quot;Hiragino Sans GB&quot;, 微软雅黑, monospace !important;">三 实践出真知</h3> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">针对limit 优化有很多种方式: 1 前端加缓存、搜索,减少落到库的查询操作。比如海量商品可以放到搜索里面,使用瀑布流的方式展现数据,很多电商网站采用了这种方式。2 优化SQL 访问数据的方式,直接快速定位到要访问的数据行。3 使用书签方式 ,记录上次查询最新/大的id值,向后追溯 M行记录。对于第二种方式 我们推荐使用"延迟关联"的方法来优化排序操作,何谓"延迟关联" :通过使用覆盖索引查询返回需要的主键,再根据主键关联原表获得需要的数据。</p> <h4 style="margin-top: 1.5rem;margin-bottom: 1rem;font-size: 18px;max-width: 100%;box-sizing: border-box;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);color: rgb(21, 153, 87);line-height: 1.35;text-align: start;overflow-wrap: break-word !important;font-family: Menlo, Monaco, &quot;Source Code Pro&quot;, Consolas, Inconsolata, &quot;Ubuntu Mono&quot;, &quot;DejaVu Sans Mono&quot;, &quot;Courier New&quot;, &quot;Droid Sans Mono&quot;, &quot;Hiragino Sans GB&quot;, 微软雅黑, monospace !important;">3.1 延迟关联</h4> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">优化前</p> <pre class="" style="padding-top: 8px;padding-bottom: 6px;max-width: 100%;box-sizing: border-box;letter-spacing: 0.544px;background: rgb(241, 239, 238);border-radius: 0px;overflow-y: auto;color: rgb(80, 97, 109);text-align: start;font-size: 10px;line-height: 12px;overflow-wrap: break-word !important;font-family: consolas, menlo, courier, monospace, &quot;Microsoft Yahei&quot;!important;border-width: 1px !important;border-style: solid !important;border-color: rgb(226, 226, 226) !important;"> <ol class=" list-paddingleft-2" style="list-style-type: none;"> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">root@xxx </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">12</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">:</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">33</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">:</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">48</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">&gt;</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">explain SELECT id</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> cu_id</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> name</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> info</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> biz_type</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> gmt_create</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> gmt_modified</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">start_time</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> end_time</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> market_type</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> back_leaf_category</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">item_status</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">picuture_url FROM relation </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(102, 102, 234);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">where</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> biz_type </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">=</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(123, 151, 38);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">'0'</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> AND end_time </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">&gt;=</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(123, 151, 38);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">'2014-05-29'</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> ORDER BY id asc LIMIT </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">149420</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">,</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">20</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">;</span></code></span></span></p></li> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">+----+-------------+-------------+-------+---------------+-------------+---------+------+--------+-----+</span></code></span></span></p></li> </ol><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> id </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> select_type </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> table </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> type </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> possible_keys </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> key </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> key_len </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(102, 102, 234);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">ref</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> rows </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(64, 126, 231);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">Extra</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span></code></span></span></p> <ol class=" list-paddingleft-2" style="list-style-type: none;"> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">+----+-------------+-------------+-------+---------------+-------------+---------+------+--------+-----+</span></code></span></span></p></li> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">1</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> SIMPLE </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> relation </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> range </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> ind_endtime </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> ind_endtime </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">9</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> NULL </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">349622</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(64, 126, 231);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">Using</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(102, 102, 234);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">where</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">;</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(64, 126, 231);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">Using</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> filesort </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">|</span></code></span></span></p></li> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">+----+-------------+-------------+-------+---------------+-------------+---------+------+--------+-----+</span></code></span></span></p></li> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">1</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> row </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(102, 102, 234);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">in</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(102, 102, 234);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">set</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">(</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">0.00</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;"> sec</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">)</span></code></span></span></p></li> </ol></pre> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">其执行时间:</p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;"><img class="" data-ratio="0.1652892561983471" data-type="png" data-w="363" height="60" width="363" src="/upload/c448309de73bc28e678f7494d959c0af.png" style="overflow-wrap: break-word;border-width: 0px;border-style: initial;border-color: initial;background-size: 22px;background-position: center center;background-repeat: no-repeat;white-space: normal;color: rgb(102, 102, 102);font-family: 宋体, Arial;font-size: 12px;height: 60px !important;box-sizing: border-box !important;width: 363px !important;"></p> <p style="margin-top: 15px;margin-bottom: 15px;max-width: 100%;box-sizing: border-box;min-height: 1em;letter-spacing: 0.544px;background-color: rgb(255, 255, 255);font-size: 16px;white-space: pre-line;line-height: 30px;color: rgb(74, 74, 74);font-family: Avenir, -apple-system-font, 微软雅黑, sans-serif;text-align: start;overflow-wrap: break-word !important;">优化后:</p> <pre class="" style="padding-top: 8px;padding-bottom: 6px;max-width: 100%;box-sizing: border-box;letter-spacing: 0.544px;background: rgb(241, 239, 238);border-radius: 0px;overflow-y: auto;color: rgb(80, 97, 109);text-align: start;font-size: 10px;line-height: 12px;overflow-wrap: break-word !important;font-family: consolas, menlo, courier, monospace, &quot;Microsoft Yahei&quot;!important;border-width: 1px !important;border-style: solid !important;border-color: rgb(226, 226, 226) !important;"> <ol class=" list-paddingleft-2" style="list-style-type: none;"> <li><p style="max-width: 100%;min-height: 1em;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;box-sizing: border-box;color: rgb(74, 74, 74);display: block;line-height: 22px;overflow-wrap: break-word !important;font-size: 14px !important;word-break: inherit !important;"><span style="max-width: 100%;box-sizing: border-box;line-height: 22px;display: block;overflow-wrap: break-word !important;word-break: inherit !important;"><code style="margin-left: -20px;max-width: 100%;box-sizing: border-box;overflow-wrap: normal;display: flex;overflow: initial;line-height: 12px;border-width: 0px;border-style: initial;border-color: initial;font-size: 10px;font-family: inherit !important;"><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">root@xxx </span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">12</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">:</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">33</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">:</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(223, 83, 32);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">43</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">&gt;</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">explain SELECT a</span><span class="" style="max-width: 100%;box-sizing: border-box;color: rgb(27, 25, 24);line-height: 20px;overflow-wrap: break-word !important;font-size: 13px !important;white-space: inherit !important;">.*</span><span class="" style="max-width: 100%;b

每位Java程序员一定收藏了这套Spring面试题与答案

作者:微信小助手

<h1 style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-size: 24px;margin-top: 36px;margin-bottom: 22px;font-weight: 700;line-height: 32px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;">Spring 概述</span></h1> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">1. 什么是spring?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Spring 是个java企业级应用的开源开发框架。Spring主要用来开发Java应用,但是有些扩展是针对构建J2EE平台的web应用。Spring 框架目标是简化Java企业级应用开发,并通过POJO为基础的编程模型促进良好的编程习惯。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">2. 使用Spring框架的好处是什么?</span></p> <ul style="list-style-type: square;" class=" list-paddingleft-2"> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">轻量:</span>Spring 是轻量的,基本的版本大约2MB。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">控制反转:</span>Spring通过控制反转实现了松散耦合,对象们给出它们的依赖,而不是创建或查找依赖的对象们。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">面向切面的编程(AOP):</span>Spring支持面向切面的编程,并且把应用业务逻辑和系统服务分开。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">容器:</span>Spring 包含并管理应用中对象的生命周期和配置。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">MVC框架</span>:Spring的WEB框架是个精心设计的框架,是Web框架的一个很好的替代品。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">事务管理:</span>Spring 提供一个持续的事务管理接口,可以扩展到上至本地事务下至全局事务(JTA)。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">异常处理:</span>Spring 提供方便的API把具体技术相关的异常(比如由JDBC,Hibernate or JDO抛出的)转化为一致的unchecked 异常。</p></li> </ul> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">3. Spring由哪些模块组成?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">以下是Spring 框架的基本模块:</p> <ul style="list-style-type: square;" class=" list-paddingleft-2"> <li><p>Core module</p></li> <li><p>Bean module</p></li> <li><p>Context module</p></li> <li><p>Expression Language module</p></li> <li><p>JDBC module</p></li> <li><p>ORM module</p></li> <li><p>OXM module</p></li> <li><p>Java Messaging Service(JMS) module</p></li> <li><p>Transaction module</p></li> <li><p>Web module</p></li> <li><p>Web-Servlet module</p></li> <li><p>Web-Struts module</p></li> <li><p>Web-Portlet module</p></li> </ul> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">4. 核心容器(应用上下文) 模块。</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">这是基本的Spring模块,提供spring 框架的基础功能,BeanFactory 是 任何以spring为基础的应用的核心。Spring 框架建立在此模块之上,它使Spring成为一个容器。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">5. BeanFactory – BeanFactory 实现举例。</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Bean 工厂是工厂模式的一个实现,提供了控制反转功能,用来把应用的配置和依赖从正真的应用代码中分离。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">最常用的BeanFactory 实现是XmlBeanFactory 类。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">6. XMLBeanFactory</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">最常用的就是org.springframework.beans.factory.xml.XmlBeanFactory ,它根据XML文件中的定义加载beans。该容器从XML 文件读取配置元数据并用它去创建一个完全配置的系统或应用。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">7. 解释AOP模块</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">AOP模块用于发给我们的Spring应用做面向切面的开发, 很多支持由AOP联盟提供,这样就确保了Spring和其他AOP框架的共通性。这个模块将元数据编程引入Spring。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">8. 解释JDBC抽象和DAO模块。</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">通过使用JDBC抽象和DAO模块,保证数据库代码的简洁,并能避免数据库资源错误关闭导致的问题,它在各种不同的数据库的错误信息之上,提供了一个统一的异常访问层。它还利用Spring的AOP 模块给Spring应用中的对象提供事务管理服务。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">9. 解释对象/关系映射集成模块。</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Spring 通过提供ORM模块,支持我们在直接JDBC之上使用一个对象/关系映射映射(ORM)工具,Spring 支持集成主流的ORM框架,如Hiberate,JDO和 iBATIS SQL Maps。Spring的事务管理同样支持以上所有ORM框架及JDBC。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">10. 解释WEB 模块。</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Spring的WEB模块是构建在application context 模块基础之上,提供一个适合web应用的上下文。这个模块也包括支持多种面向web的任务,如透明地处理多个文件上传请求和程序级请求参数的绑定到你的业务对象。它也有对Jakarta Struts的支持。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">12. Spring配置文件</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Spring配置文件是个XML 文件,这个文件包含了类信息,描述了如何配置它们,以及如何相互调用。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">13. 什么是Spring IOC 容器?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Spring IOC 负责创建对象,管理对象(通过依赖注入(DI),装配对象,配置对象,并且管理这些对象的整个生命周期。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">14. IOC的优点是什么?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">IOC 或 依赖注入把应用的代码量降到最低。它使应用容易测试,单元测试不再需要单例和JNDI查找机制。最小的代价和最小的侵入性使松散耦合得以实现。IOC容器支持加载服务时的饿汉式初始化和懒加载。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">15. ApplicationContext通常的实现是什么?</span></p> <ul style="list-style-type: square;" class=" list-paddingleft-2"> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">FileSystemXmlApplicationContext :</span>此容器从一个XML文件中加载beans的定义,XML Bean 配置文件的全路径名必须提供给它的构造函数。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">ClassPathXmlApplicationContext:</span>此容器也从一个XML文件中加载beans的定义,这里,你需要正确设置classpath因为这个容器将在classpath里找bean配置。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">WebXmlApplicationContext:</span>此容器加载一个XML文件,此文件定义了一个WEB应用的所有bean。</p></li> </ul> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">16. Bean 工厂和 Application contexts 有什么区别?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Application contexts提供一种方法处理文本消息,一个通常的做法是加载文件资源(比如镜像),它们可以向注册为监听器的bean发布事件。另外,在容器或容器内的对象上执行的那些不得不由bean工厂以程序化方式处理的操作,可以在Application contexts中以声明的方式处理。Application contexts实现了MessageSource接口,该接口的实现以可插拔的方式提供获取本地化消息的方法。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">17. 一个Spring的应用看起来象什么?</span></p> <ul style="list-style-type: square;" class=" list-paddingleft-2"> <li><p>一个定义了一些功能的接口。</p></li> <li><p>这实现包括属性,它的Setter , getter 方法和函数等。</p></li> <li><p>Spring AOP。</p></li> <li><p>Spring 的XML 配置文件。</p></li> <li><p>使用以上功能的客户端程序。</p></li> </ul> <h1 style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-size: 24px;margin-top: 36px;margin-bottom: 22px;font-weight: 700;line-height: 32px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;">依赖注入</span></h1> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">18. 什么是Spring的依赖注入?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">依赖注入,是IOC的一个方面,是个通常的概念,它有多种解释。这概念是说你不用创建对象,而只需要描述它如何被创建。你不在代码里直接组装你的组件和服务,但是要在配置文件里描述哪些组件需要哪些服务,之后一个容器(IOC容器)负责把他们组装起来。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">19. 有哪些不同类型的IOC(依赖注入)方式?</span></p> <ul style="list-style-type: square;" class=" list-paddingleft-2"> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">构造器依赖注入:</span>构造器依赖注入通过容器触发一个类的构造器来实现的,该类有一系列参数,每个参数代表一个对其他类的依赖。</p></li> <li><p><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">Setter方法注入:</span>Setter方法注入是容器通过调用无参构造器或无参static工厂 方法实例化bean之后,调用该bean的setter方法,即实现了基于setter的依赖注入。</p></li> </ul> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">20. 哪种依赖注入方式你建议使用,构造器注入,还是 Setter方法注入?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">你两种依赖方式都可以使用,构造器注入和Setter方法注入。最好的解决方案是用构造器参数实现强制依赖,setter方法实现可选依赖。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">Spring Beans</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">21.什么是Spring beans?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Spring beans 是那些形成Spring应用的主干的java对象。它们被Spring IOC容器初始化,装配,和管理。这些beans通过容器中配置的元数据创建。比如,以XML文件中&lt;bean/&gt; 的形式定义。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">Spring 框架定义的beans都是单件beans。在bean tag中有个属性”singleton”,如果它被赋为TRUE,bean 就是单件,否则就是一个 prototype bean。默认是TRUE,所以所有在Spring框架中的beans 缺省都是单件。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">22. 一个 Spring Bean 定义 包含什么?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">一个Spring Bean 的定义包含容器必知的所有配置元数据,包括如何创建一个bean,它的生命周期详情及它的依赖。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">23. 如何给Spring 容器提供配置元数据?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">这里有三种重要的方法给Spring 容器提供配置元数据。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">XML配置文件。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">基于注解的配置。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">基于java的配置。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);"><span style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;font-weight: 700;">24. 你怎样定义类的作用域?</span></p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin-bottom: 16px;color: rgb(34, 34, 34);font-family: &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei&quot;, &quot;WenQuanYi Micro Hei&quot;, &quot;Helvetica Neue&quot;, Arial, sans-serif;font-size: 16px;text-align: start;white-space: normal;background-color: rgb(255, 255, 255);">当定义一个&lt;bean&gt; 在Spring里,我们还能给这个bean声明一个作用域。它可以通过bean 定义中的scope属性来定义。如,当Spring要在需要的时候每次生产一个新的bean实例,bean的scope属性被指定为prototype。另一方面,一个bean每次使用的时候必须返回同一个实例,这个bean的scope 属性 必须设为 singleton。</p> <p style="-webkit-tap-highlight-color: transparent;box-sizing: border-box;margin-top: 16px;margin

【MySQL】mysql5.7.13 Linux安装

作者:じ☆ve宝贝

## 1.下载MySQL 在官网:http://dev.mysql.com/downloads/mysql/ 中,选择以下版本的mysql下载 ![mysql安装](/upload/341b9252309742849f4a2d44e3efe520.png "mysql安装") ## 2.规划安装目录 安装包存放目录:/data/soft mysql安装目录:/data/mysql mysql数据data存放目录:/data/mysql/data mysql日志log存放目录:/data/mysql/log ## 3.开始安装mysql 1. 进入安装包存放目录 ` cd /data/soft ` 2. 下载安装包 ``` wget http://dev.mysql.com/get/Downloads/MySQL-5.7/mysql-5.7.13-linux-glibc2.5-x86_64.tar.gz ``` 3. 解压安装包 ` tar -zxvf mysql-5.7.13-linux-glibc2.5-x86_64.tar.gz ` 4. 进入解压目录,并把内容移动到/data/mysql目录中 ` cd /data/soft/mysql-5.7.13-linux-glibc2.5-x86_64 ` ` mv * /data/mysql ` 5. 进入mysql的安装目录中 ` cd /data/mysql ` 6. 创建mysql用户以及用户组 ` groupadd mysql ` ` useradd -g mysql mysql ` 7. 更改目录的所有者 ` chown –R mysql . ` ` chgrp –R mysql . ` 8. 配置初始化参数 ``` bin/mysqld --initialize --user=mysql --basedir=/data/mysql --datadir=/data/mysql/data ``` ` 注意此处要记录最后面生成的临时密码(结尾:后面的部分) ` ` bin/mysql_ssl_rsa_setup --datadir=/data/mysql/data ` 9. 修改系统配置参数 ` cd /data/mysql/support-files cp my-default.cnf /etc/my.cnf ` ` cp mysql.server /etc/init.d/mysql ` 10. 修改内容 ` vi /etc/init.d/mysql ` 找到basedir和datadir,修改为: ``` basedir=/data/mysql datadir=/data/mysql/data ``` ` vi /etc/my.cnf ` 找到basedir和datadir,修改为: ``` [client] port = 3306 socket = /data/mysql/mysql.sock [mysqld] port = 3306 socket = /data/mysql/mysql.sock datadir = /data/mysql/data skip-external-locking key_buffer_size = 384M max_allowed_packet = 1M table_open_cache = 512 sort_buffer_size = 2M read_buffer_size = 2M read_rnd_buffer_size = 8M myisam_sort_buffer_size = 64M thread_cache_size = 8 query_cache_size = 32M query_cache_limit = 16M thread_cache_size = 300 innodb_buffer_pool_size = 32M max_connections = 1000 slow_query_log = on slow_launch_time = 2 long_query_time = 5 slow_query_log_file = /data/mysql/log/mysql-slow.log default-storage-engine=INNODB server-id = 1 log-bin=mysql-bin innodb_buffer_pool_size = 384M innodb_log_file_size = 100M innodb_log_buffer_size = 8M innodb_flush_log_at_trx_commit = 1 innodb_lock_wait_timeout = 50 binlog_format=mixed [mysqldump] quick max_allowed_packet = 16M [mysql] no-auto-rehash [myisamchk] key_buffer_size = 20M sort_buffer_size = 20M read_buffer = 2M write_buffer = 2M [mysqlhotcopy] interactive-timeout ``` ## 4. 启动mysql ` cd /data/mysql ` ` bin/mysqld_safe --user=mysql & ` 登录(密码为上面的临时密码): ` bin/mysql -u root –p ` ` set password=password('root');//修改密码成功 ` ## 5.添加系统变量 ``` ln -s /data/mysql/bin/* /usr/local/bin/ ln -s /data/mysql/mysql.sock /tmp/mysql.sock ``` ## 6. 添加开机自启 ` chkconfig --add mysql ` ##7 .远程访问授权 ` grant all privileges on *.* to root@'%' identified by 'root'; ` ` flush privileges; `

Git使用教程:最详细、最傻瓜、最浅显、真正手把手教!

作者:微信小助手

<p style="text-align: center;"><span style="font-size: 14px;letter-spacing: 0.5440000295639038px;text-align: center;max-width: 100%;color: rgb(255, 41, 65);line-height: 22.4px;">(给</span><span style="font-size: 14px;letter-spacing: 0.5440000295639038px;text-align: center;max-width: 100%;line-height: 22.4px;color: rgb(0, 128, 255);">ImportNew</span><span style="font-size: 14px;letter-spacing: 0.5440000295639038px;text-align: center;max-width: 100%;color: rgb(255, 41, 65);line-height: 22.4px;">加星标,提高Java技能)</span></p> <p><br></p> <blockquote> <p style="letter-spacing: 0.5440000295639038px;white-space: normal;background-color: rgb(255, 255, 255);max-width: 100%;min-height: 1em;text-align: left;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;font-size: 14px;box-sizing: border-box !important;overflow-wrap: break-word !important;">转自:java思维导图</span></p> </blockquote> <p><br></p> <p><span style="color: rgb(171, 25, 66);"><strong><span style="font-size: 15px;">一:Git是什么?</span></strong></span></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">Git是目前世界上最先进的分布式版本控制系统。</span></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">工作原理 / 流程:</span></p> <p><span style="font-size: 15px;"><br></span></p> <p style="text-align: center;"><img class="" data-copyright="0" data-ratio="0.2898148148148148" data-s="300,640" src="/upload/52223940c432c3d0dd372bd0da92cfe6.jpg" data-type="jpeg" data-w="1080" style=""></p> <p><span style="font-size: 15px;"><br></span></p> <ul class=" list-paddingleft-2" style="list-style-type: disc;"> <li><p><span style="font-size: 15px;">Workspace:工作区</span></p></li> <li><p><span style="font-size: 15px;">Index / Stage:暂存区</span></p></li> <li><p><span style="font-size: 15px;">Repository:仓库区(或本地仓库)</span></p></li> <li><p><span style="font-size: 15px;">Remote:远程仓库</span></p></li> </ul> <p><span style="font-size: 15px;"><br></span></p> <p><span style="color: rgb(171, 25, 66);"><strong><span style="font-size: 15px;">二:SVN与Git的最主要的区别?</span></strong></span></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">SVN是集中式版本控制系统,版本库是集中放在中央服务器的,而干活的时候,用的都是自己的电脑,所以首先要从中央服务器哪里得到最新的版本,然后干活,干完后,需要把自己做完的活推送到中央服务器。集中式版本控制系统是必须联网才能工作,如果在局域网还可以,带宽够大,速度够快,如果在互联网下,如果网速慢的话,就纳闷了。</span></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">Git是分布式版本控制系统,那么它就没有中央服务器的,每个人的电脑就是一个完整的版本库,这样,工作的时候就不需要联网了,因为版本都是在自己的电脑上。既然每个人的电脑都有一个完整的版本库,那多个人如何协作呢?比如说自己在电脑上改了文件A,其他人也在电脑上改了文件A,这时,你们两之间只需把各自的修改推送给对方,就可以互相看到对方的修改了。</span></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="color: rgb(171, 25, 66);"><strong><span style="font-size: 15px;">三、在windows上如何安装Git?</span></strong></span></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">msysgit是 windows版的Git,如下:</span></p> <p><span style="font-size: 15px;"><br></span></p> <p style="text-align: center;"><img class="" data-copyright="0" data-ratio="0.11788617886178862" data-s="300,640" src="/upload/f3c50e638fda9592731a069cb2497b45.jpg" data-type="jpeg" data-w="246" style=""></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">需要从网上下载一个,然后进行默认安装即可。安装完成后,在开始菜单里面找到 "Git --&gt; Git Bash",如下:</span></p> <p><span style="font-size: 15px;"><br></span></p> <p style="text-align: center;"><img class="" data-copyright="0" data-ratio="0.2885375494071146" data-s="300,640" src="/upload/e0e39c2b8f5bad36d1fbd3cd8d6440ea.jpg" data-type="jpeg" data-w="253" style=""></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">会弹出一个类似的命令窗口的东西,就说明Git安装成功。如下:</span></p> <p><span style="font-size: 15px;"><br></span></p> <p style="text-align: center;"><img class="" data-copyright="0" data-ratio="0.5688622754491018" data-s="300,640" src="/upload/866325dd014a6b51bbbb5fcdf76c7f61.jpg" data-type="jpeg" data-w="668" style=""></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">安装完成后,还需要最后一步设置,在命令行输入如下:</span></p> <p><span style="font-size: 15px;"><br></span></p> <p style="text-align: center;"><img class="" data-copyright="0" data-ratio="0.32972136222910214" data-s="300,640" src="/upload/9f2b8c7b5aa88645ae9ec15a64996d96.jpg" data-type="jpeg" data-w="646" style=""></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">因为Git是分布式版本控制系统,所以需要填写用户名和邮箱作为一个标识。</span></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="font-size: 15px;">注意:git config --global 参数,有了这个参数,表示你这台机器上所有的Git仓库都会使用这个配置,当然你也可以对某个仓库指定的不同的用户名和邮箱。</span></p> <p><span style="font-size: 15px;"><br></span></p> <p><span style="color:

详解设计模式在Spring中的应用

作者:微信小助手

<p style="margin-right: 8px;margin-bottom: 10px;margin-left: 8px;max-width: 100%;min-height: 1em;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);text-align: left;line-height: 2em;box-sizing: border-box !important;word-wrap: break-word !important;"><span style="max-width: 100%;letter-spacing: 1px;font-size: 15px;box-sizing: border-box !important;word-wrap: break-word !important;"><img class="" data-ratio="0.42578125" src="/upload/485a4178550c03e94434d8967a813346.jpg" data-type="jpeg" data-w="512"></span></p> <p style="margin-right: 8px;margin-bottom: 10px;margin-left: 8px;max-width: 100%;min-height: 1em;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);text-align: left;line-height: 2em;box-sizing: border-box !important;word-wrap: break-word !important;"><span style="max-width: 100%;letter-spacing: 1px;font-size: 15px;box-sizing: border-box !important;word-wrap: break-word !important;">设计模式作为工作学习中的枕边书,却时常处于勤说不用的尴尬境地,也不是我们时常忘记,只是一直没有记忆。Spring作为业界的经典框架,无论是在架构设计方面,还是在代码编写方面,都堪称行内典范。</span></p> <p style="margin-right: 8px;margin-bottom: 10px;margin-left: 8px;max-width: 100%;min-height: 1em;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);text-align: left;line-height: 2em;box-sizing: border-box !important;word-wrap: break-word !important;"><span style="max-width: 100%;letter-spacing: 1px;font-size: 15px;box-sizing: border-box !important;word-wrap: break-word !important;">好了,话不多说,开始今天的内容。spring中常用的设计模式达到九种,我们举例说明。</span></p> <p style="margin-right: 8px;margin-bottom: 10px;margin-left: 8px;max-width: 100%;min-height: 1em;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);text-align: left;line-height: 2em;box-sizing: border-box !important;word-wrap: break-word !important;"><span style="max-width: 100%;letter-spacing: 1px;font-size: 15px;box-sizing: border-box !important;word-wrap: break-word !important;">以后再也不怕面试官问我:Spring中用了哪些设计模式了。</span></p> <section class="" data-mpa-template-id="1559891" data-mpa-color="null" data-mpa-category="收藏" style="max-width: 100%;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);box-sizing: border-box !important;word-wrap: break-word !important;"> <section class="" style="max-width: 100%;box-sizing: border-box;word-wrap: break-word !important;"> <section class="" style="max-width: 100%;box-sizing: border-box;word-wrap: break-word !important;"> <section class="" style="max-width: 100%;box-sizing: border-box;word-wrap: break-word !important;"> <p style="max-width: 100%;box-sizing: border-box;min-height: 1em;word-wrap: break-word !important;"><br data-filtered="filtered" style="max-width: 100%;box-sizing: border-box;word-wrap: break-word !important;"></p> </section> </section> </section> <section class="" style="max-width: 100%;box-sizing: border-box;word-wrap: break-word !important;"> <section class="" style="margin-top: 0.5em;margin-bottom: 0.5em;max-width: 100%;box-sizing: border-box;line-height: 1;word-wrap: break-word !important;"> <section class="" style="padding-right: 2px;padding-bottom: 3px;padding-left: 2px;max-width: 100%;box-sizing: border-box;display: inline-block;border-bottom: 2px solid rgb(71, 193, 168);word-wrap: break-word !important;"> <section class="" style="padding: 0.3em 0.4em;max-width: 100%;box-sizing: border-box;display: inline-block;min-width: 1.8em;min-height: 1.6em;line-height: 1;text-align: center;border-radius: 80% 100% 90% 20%;background-color: rgb(71, 193, 168);color: rgb(255, 255, 240);word-wrap: break-word !important;"> <section class="" mpa-none-contnet="t" style="max-width: 100%;box-sizing: border-box;word-wrap: break-word !important;"> 1 </section> </section> <span class="" style="margin-left: 0.4em;max-width: 100%;box-sizing: border-box;display: inline-block;color: rgb(71, 193, 168);line-height: 1.4;word-wrap: break-word !important;"><p style="max-width: 100%;box-sizing: border-box;min-height: 1em;word-wrap: break-word !important;"><strong mpa-from-tpl="t" mpa-is-content="t" style="max-width: 100%;box-sizing: border-box;word-wrap: break-word !important;">简单工厂模式</strong></p></span> </section> </section> </section> </section> <p style="margin-right: 8px;margin-bottom: 10px;margin-left: 8px;max-width: 100%;min-height: 1em;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);text-align: left;line-height: 2em;box-sizing: border-box !important;word-wrap: break-word !important;"><span style="max-width: 100%;letter-spacing: 1px;font-size: 15px;box-sizing: border-box !important;word-wrap: break-word !important;">又叫做静态工厂方法(StaticFactory Method)模式,但不属于23种GOF设计模式之一。&nbsp;</span><br style="max-width: 100%;box-sizing: border-box !important;word-wrap: break-word !important;"></p> <p style="margin-right: 8px;margin-bottom: 10px;margin-left: 8px;max-width: 100%;min-height: 1em;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);text-align: left;line-height: 2em;box-sizing: border-box !important;word-wrap: break-word !important;"><span style="max-width: 100%;line-height: 2em;letter-spacing: 1px;font-size: 15px;box-sizing: border-box !important;word-wrap: break-word !important;">简单工厂模式的实质是由一个工厂类根据传入的参数,动态决定应该创建哪一个产品类。&nbsp;</span></p> <p style="margin-right: 8px;margin-bottom: 10px;margin-left: 8px;max-width: 100%;min-height: 1em;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);text-align: left;line-height: 2em;box-sizing: border-box !important;word-wrap: break-word !important;"><span style="max-width: 100%;line-height: 2em;letter-spacing: 1px;font-size: 15px;box-sizing: border-box !important;word-wrap: break-word !important;">spring中的BeanFactory就是简单工厂模式的体现,根据传入一个唯一的标识来获得bean对象,但是否是在传入参数后创建还是传入参数前创建这个要根据具体情况来定。如下配置,就是在 HelloItxxz 类中创建一个 itxxzBean。</span></p> <section data-mpa-preserve-tpl-color="t" data-mpa-template="t" class="" mpa-preserve="t" style="max-width: 100%;letter-spacing: 0.544px;white-space: normal;background-color: rgb(255, 255, 255);box-sizing: border-box !important;word-wrap: break-word !important;"> <pre style="margin-top: 0px;margin-bottom: 0px;padding: 0px;max-width: 100%;background-image: none;background-color: initial;box-sizing: border-box !important;word-wrap: break-word !important;"><code class="" style="margin-right: 0.15em;margin-left: 0.15em;padding: 6px;max-width: 100%;border-radius: 4px;font-size: 0.85em;background: rgb(40, 44, 52);color: rgb(171, 178, 191);display: block;overflow-x: auto;white-space: nowrap;box-sizing: border-box !important;word-wrap: break-word !important;"><span style="max-width: 100%;font-size: 12px;box-sizing: border-box !important;word-wrap: break-word !important;"><span class="" style="max-width: 100%;background: rgba(0, 0, 0, 0);display: inline;width: 46px;text-decoration-style: solid;text-decoration-color: rgb(171, 178, 191);">&lt;<span class="" style="max-width: 100%;color: rgb(224, 108, 117);background: rgba(0, 0, 0, 0);display: inline;width: 33px;text-decoration-style: solid;text-decoration-color: rgb(224, 108, 117);box-sizing: border-box !important;word-wrap: break-word !important;">beans</span>&gt;</span><br style="max-width: 100%;box-sizing: border-box !important;word-wrap: break-word !important;"><span class="" style="max-width: 100%;background: rgba(0, 0, 0, 0);display: inline;width: 356px;text-decoration-style: solid;text-decoration-color: rgb(171, 178, 191);">&nbsp; &lt;<span class="" style="max-width: 100%;color: rgb(224, 108, 117);background: rgba(0, 0, 0, 0);display: inline;width: 27px;text-decoration-style: solid;text-decoration-color: rgb(224, 108, 117);box-sizing: border-box !important;word-wrap: break-word !important;">bean</span>&nbsp;<span class="" style="max-width: 100%;color: rgb(209, 154, 102);background: rgba(0, 0, 0, 0);display: inline;width: 14px;text-decoration-style: solid;text-decoration-color: rgb(209, 154, 102);box-sizing: border-box !important;word-wrap: break-word !important;">id</span>=<span class="" style="max-width: 100%;color: rgb(152, 195, 121);background: rgba(0, 0, 0, 0);display: inline;width: 99px;text-decoration-style: solid;text-decoration-color: rgb(152, 195, 121);box-sizing: border-box !important;word-wrap: break-word !important;">"singletonBean"</span>&nbsp;<span class="" style="max-width: 100%;color: rgb(209, 154, 102);background: rgba(0, 0, 0, 0);display: inline;width: 33px;text-decoration-style: solid;text-decoration-color: rgb(209, 154, 102);box-sizing: border-box !important;word-wrap: break-word !important;">class</span>=<span class="" style="max-width: 100%;color: rgb(152, 195, 121);background: rgba(0, 0, 0, 0);display: inline;width: 145px;text-decoration-style: solid;text-decoration-color: rgb(152, 195, 121);box-sizing: border-box !important;word-wrap: break-word !important;">"com.itxxz.HelloItxxz"</span>&gt;</span><br style="max-width: 100%;box-sizing: border-box !important;word-wrap: break-word !important;">&nbsp; &nbsp; &nbsp;<span class="" style="max-width: 100%;background: rgba(0, 0, 0, 0);display: inline;width: 112px;text-decoration-style: solid;text-decoration-color: rgb(171, 178, 191);">&lt;<span class="" style="max-width: 100%;color: rgb(224, 108, 117);background: rgba(0, 0, 0, 0);display: inline;width: 99px;text-decoration-style: solid;text-decoration-color: rgb(224, 108, 117);box-sizing: border-box !important;word-wrap: break-word !important;">constructor-arg</span>&gt;</span><br style="max-width: 100%;box-sizing: border-box !important;word-wrap: break-word !important;">&nbsp; &nbsp; &nbsp; &nbsp;<span class="" style="max-width: 100%;background: rgba(0, 0, 0, 0);display: inline;width: 46px;text-decoration-style: solid;text-decoration-color: rgb(171, 178, 191);">&lt;<span class="" style="max-width: 100%;color: rgb(224, 108, 117);background: rgba(0, 0, 0, 0);display: inline;width: 33px;text-decoration-style: solid;text-decoration-color: rgb(224, 108, 117);box-sizing: border-box !important;word-wrap: break-word !important;">value</span>&gt;</span>Hello! 这是singletonBean&lt;/value&gt;<br style="max-width: 100%;box-sizing: border-box !important;word-wrap: break-word !important;">&nbsp; &nbsp; &nbsp;<span class="" style="max-width: 100%;background: rgba(0, 0, 0, 0);display: inline;width: 119px;text-decoration-style: solid;text-decoration-color: rgb(171, 178, 191);">&lt;/<span class="" style="max-width: 100%;color: rgb(224, 108, 117);background: rgba(0, 0, 0, 0);display: inline;width: 99px;text-decoration-style: solid;text-decoration-color: rgb(224, 108, 117);box-sizing: border-box !important;word-wrap: break-word !important;">constructor-arg</span>&gt;</span><br style="max-width: 100%;box-sizing: border-box !important;word-wrap: break-word !important;"><span class="" style="max-width: 100%;background: rgba(0, 0, 0, 0);display: inline;width: 53px;text-decoration-style: solid;text-decoration-color: rgb(171, 178, 191);">&nbsp;&lt;/&nbsp;<span class="" style="max-width: 100%;color: rgb(209, 154, 102);background: rgba(0, 0, 0, 0);display: inline;width: 26px;text-decoration-style: solid;text-decoration-color: rgb(209, 154, 102);box-sizing: border-box !important;word-wrap: break-word !important;">bean</span>&gt;</span><br style="max-width: 100%;box-sizing: border-box !important;word-wrap: break-word !important;"><span class="" style="max-width: 100%;background: rgba(0, 0, 0, 0);display: inline;width: 323px;text-decoration-style: solid;text-decoration-color: rgb(171, 178, 191);">&nbsp;&lt;<span class="" style="max-width: 100%;color: rgb(224, 108, 117);background: rgba(0, 0, 0, 0);display: inline;width: 27px;text-decoration-style: solid;text-decoration-color: rgb(224, 108, 117);box-sizing: border-box !important;word-wrap: break-word !important;">bean</span>&nbsp;<span class="" style="max-width: 100%;color: rgb(209, 154, 102);background: rgba(0, 0, 0, 0);display: inline;width: 14px;text-decoration-style: solid;text-decoration-color: rgb(209, 154, 102);box-sizing: border-box !important;word-wrap: break-word !important;">id</span>=<span class="" style="max-width: 100%;color: rgb(152, 195, 121);background: rgba(0, 0, 0, 0);display: inline;width: 73px;text-decoration-style: solid;text-decoration-color: rgb(152, 195, 121);box-sizing: border-box !important;word-wrap: break-word !important;">"itxxzBean"</span>&nbsp;<span class="" style="max-width: 100%;color: rgb(209, 154, 102);background: rgba(0, 0, 0, 0);display: inline;width: 33px;text-decoration-style: solid;text-decoration-color: rgb(209, 154, 102);box-sizing: border-box !important;word-wrap: break-word !important;">class</span>=<span class="" style="max-width: 100%;color: rgb(152, 195, 121);background: rgba(0, 0, 0, 0);display: inline;width: 145px;text-decoration-style: solid;text-decorati

MySQL 更改数据库数据存储目录

作者:微信小助手

<blockquote style="max-width: 100%;color: rgb(51, 51, 51);font-family: -apple-system-font, system-ui, &quot;Helvetica Neue&quot;, &quot;PingFang SC&quot;, &quot;Hiragino Sans GB&quot;, &quot;Microsoft YaHei UI&quot;, &quot;Microsoft YaHei&quot;, Arial, sans-serif;font-size: 17px;letter-spacing: 0.544px;text-align: justify;white-space: normal;background-color: rgb(255, 255, 255);box-sizing: border-box !important;overflow-wrap: break-word !important;"> <p style="max-width: 100%;min-height: 1em;text-align: left;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;font-size: 14px;box-sizing: border-box !important;overflow-wrap: break-word !important;">来源:潇湘隐者 ,</span></p> <p style="max-width: 100%;min-height: 1em;text-align: left;box-sizing: border-box !important;overflow-wrap: break-word !important;"><span style="max-width: 100%;font-size: 14px;box-sizing: border-box !important;overflow-wrap: break-word !important;">www.cnblogs.com/kerrycode/p/4371938.html</span></p> </blockquote> <p><br></p> <p>MySQL数据库默认的数据库文件位于 /var/lib/mysql 下,有时候由于存储规划等原因,需要更改 MySQL 数据库的数据存储目录。下文总结整理了实践过程的操作步骤。</p> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">1 确认MySQL数据库存储目录</span></strong></p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server tmp]# mysqladmin -u root -p variables | grep datadir</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">Enter password:&nbsp;</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">| datadir | /var/lib/mysql/</span></p> </blockquote> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">2 关闭MySQL服务</span></strong></p> <p><br></p> <p>在更改MySQL的数据目录前,必须关闭MySQL服务。</p> <p><br></p> <p>方式1:</p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]# service mysql status</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">MySQL running (9411)[ OK ]</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]# service mysql stop</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">Shutting down MySQL..[ OK ]</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]#</span></p> </blockquote> <p><br></p> <p style="text-align: center;"><img class="aligncenter size-full wp-image-30416" data-ratio="0.18923076923076923" src="/upload/fb065dd590e88bdbaf1a91d005d9aa1.png" data-type="png" data-w="650" style="border-width: 0px;border-style: initial;border-color: initial;font-size: 0px;color: transparent;vertical-align: middle;text-align: center;margin: 0px;top: 0px;left: 0px;right: 0px;bottom: 0px;" title="271523353339115"></p> <p><br></p> <p>方式2:</p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]# /etc/rc.d/init.d/mysql status</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">MySQL running (8900)[ OK ]</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]# /etc/rc.d/init.d/mysql stop</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">Shutting down MySQL..[ OK ]</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]#</span></p> </blockquote> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">3 创建新的数据库存储目录</span></strong></p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]# cd /u01</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server u01]# mkdir mysqldata</span></p> </blockquote> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">4 移动MySQL数据目录到新位置</span></strong></p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]# mv /var/lib/mysql /u01/mysqldata/</span></p> </blockquote> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">5 修改配置文件my.cnf</span></strong></p> <p><br></p> <p>并不是所有版本都包含有 my.cnf 这个配置文件,在 MySQL 5.5 版本,我就找不到 my.cnf 这个配置文件, 而有些 MySQL 版本该文件位于 /usr/my.cnf,如果 /etc/ 目录下没有 my.cnf 配置文件,请到 /usr/share/mysql/ 下找到 *.cnf 文件,拷贝其中一个到 /etc/ 并改名为 my.cnf 中。命令如下:</p> <p><br></p> <p style="text-align: center;"><img class="aligncenter size-full wp-image-30417" data-ratio="0.2" src="/upload/7997fe80ab16970d6c33432f0a1c6290.png" data-type="png" data-w="650" style="border-width: 0px;border-style: initial;border-color: initial;font-size: 0px;color: transparent;vertical-align: middle;text-align: center;margin: 0px;top: 0px;left: 0px;right: 0px;bottom: 0px;" title="271523368333374"></p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server mysql]# cp /usr/share/mysql/my-medium.cnf /etc/my.cnf</span></p> </blockquote> <p><br></p> <p>编辑 /etc/my.cnf 文件,修改参数 socket</p> <p><br></p> <p style="text-align: center;"><img class="aligncenter size-full wp-image-30418" data-ratio="0.5123076923076924" src="/upload/e996031b1b66a926f3a21547011d789e.png" data-type="png" data-w="650" style="border-width: 0px;border-style: initial;border-color: initial;font-size: 0px;color: transparent;vertical-align: middle;text-align: center;margin: 0px;top: 0px;left: 0px;right: 0px;bottom: 0px;" title="271523380524845"></p> <p><br></p> <p>MySQL 5.5 版本</p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);"># The following options will be passed to all MySQL clients<br></span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[client]</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">#password&nbsp; &nbsp; &nbsp; &nbsp;= your_password</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">port&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = 3306</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">socket&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = /u01/mysqldata/mysql/mysql.sock</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">&nbsp;</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);"># Here follows entries for some specific programs</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">&nbsp;</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);"># The MySQL server</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[mysqld]</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">port&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = 3306</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">socket&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; = /u01/mysqldata/mysql/mysql.sock</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">skip-external-locking</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">key_buffer_size = 16M</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">max_allowed_packet = 1M</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">table_open_cache = 64</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">sort_buffer_size = 512K</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">net_buffer_length = 8K</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">read_buffer_size = 256K</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">read_rnd_buffer_size = 512K</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">myisam_sort_buffer_size = 8M</span></p> </blockquote> <p><br></p> <p style="text-align: center;"><img class="aligncenter size-full wp-image-30419" data-ratio="0.47384615384615386" src="/upload/74a4d9b2c4eeb2e9a2c22cd2d9ff1138.png" data-type="png" data-w="650" style="border-width: 0px;border-style: initial;border-color: initial;font-size: 0px;color: transparent;vertical-align: middle;text-align: center;margin: 0px;top: 0px;left: 0px;right: 0px;bottom: 0px;" title="271523392702019"></p> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">6 修改启动脚本 /etc/init.d/mysql</span></strong></p> <p><br></p> <p>将参数 datadir 修改为 datadir=/u01/mysqldata/mysql/</p> <p><br></p> <p style="text-align: center;"><img class="aligncenter size-full wp-image-30420" data-ratio="0.4938461538461538" src="/upload/73e329733eded627a3849a67457989e9.png" data-type="png" data-w="650" style="border-width: 0px;border-style: initial;border-color: initial;font-size: 0px;color: transparent;vertical-align: middle;text-align: center;margin: 0px;top: 0px;left: 0px;right: 0px;bottom: 0px;" title="271523410522362"></p> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">7 启动MySQL服务并验证MySQL数据库路径</span></strong></p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]# service mysql start</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">Starting MySQL..[&nbsp; OK&nbsp; ]</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server ~]# mysqladmin -u root -p variables | grep datadir</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">Enter password:&nbsp;</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">| datadir&nbsp; &nbsp; &nbsp; &nbsp; | /u01/mysqldata/mysql/</span></p> </blockquote> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">我的疑问</span></strong></p> <p><br></p> <p>1 在修改数据库的存储目录前,/var/lib/mysql/ 目录下根本没有 mysql.sock 文件,安装上面配置后,就会生成 mysql.sock 文件。</p> <p><br></p> <p>关于 mysql.sock 文件,搜索了一下资料:mysql.sock 是用于 socket 连接的文件。也就是只有你的守护进程启动起来这个文件才存在。但是你的 mysql 程序(这个程序是客户端,服务器端是 mysqld)可以选择是否使用 mysql.sock 文件来连接(因为这个方法只适合在 Unix 主机上面连接本地的 mysqld),对于非本地的任何类型的主机。</p> <p><br></p> <p>那么这个文件是否一定需要的呢? 这个需要进一步了解清楚。</p> <p><br></p> <p>2 我在网上看有些网友总结的修改 MySQL 数据路径,有些需要给新建的目录的权限做一些处理,而有些有不用对目录权限进行授权,我没有处理,也没有什么问题。到底要不要对新的数据库目录授权呢?</p> <p><br></p> <p>3 我在 MySQL_5.6.20 这个版本测试时,不修改 my.cnf,只修改启动脚本 /etc/init.d/mysql,也完全没有啥问题。也没有 myssql.sock 文件生成。</p> <p><br></p> <p>4 注意如果没有禁用 SElinux,修改MySQL的数据路径后启动MySQL服务会遇到一些错误。关于这个的解释是后台服务都需要有对相应目录的对应权限,而 mysql 的默认路径 /var/lib/mysql 已经添加了相应的策略,修改路径后由于没有相应的策略,导致后台进程读取文件被 SElinux 阻止,从而出现权限错误。 所以要么关闭 SElinux 或修改文件安全上下文。</p> <p><br></p> <blockquote> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server mysql]# /etc/init.d/mysql start</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">Starting MySQL....The server quit without updating PID file (/u01/mysqldata/mysql//DB-Server.localdomain.pid).[FAILED]</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server mysql]#&nbsp;</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server mysql]# chcon -R -t mysqld_db_t /u01/mysqldata/mysql/</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">[root@DB-Server mysql]# /etc/init.d/mysql start</span></p> <p><span style="font-size: 12px;color: rgb(136, 136, 136);">Starting MySQL.[ OK ]</span></p> </blockquote> <p><br></p> <p><strong><span style="color: rgb(255, 76, 65);">参考资料</span></strong></p> <p><br></p> <ul class=" list-paddingleft-2" style="list-style-type: disc;"> <li><p>http://database.ctocio.com.cn/tips/449/7566949.shtml</p></li> <li><p>www.linuxidc.com/Linux/2012-12/75647.htm</p></li> <li><p>http://blog.csdn.net/hellyhe/article/details/8309470</p></li> </ul>

Java并发编程73道面试题及答案 —— 面试稳了

作者:微信小助手

<blockquote> <section class="xmteditor" data-tools="新媒体管家" data-label="powered by xmt.cn" style="text-align: left;"> <strong><span style="font-size: 14px;color: rgb(0, 82, 255);">作者:乌枭</span></strong> </section> <section class="xmteditor" data-tools="新媒体管家" data-label="powered by xmt.cn" style="text-align: left;"> <strong><span style="font-size: 14px;color: rgb(0, 82, 255);">来自:https://blog.csdn.net/qq_34039315/article/details/78549311</span></strong> </section> </blockquote> <p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 25px;"><span style="font-size: 15px;">最近后台和微信理有很多读者让我整理一些面试题,我就把这事放在心上了,于是在各大网站和其他公众号里面搜索面试相关的高质量文章或者信息,今天主要整理一下 Java 并发编程在面试中的常见问题,希望对需要的读者有用。</span></p> <p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 25px;"><span style="color: rgb(171, 25, 66);"><strong><span style="font-size: 18px;">1、在java中守护线程和本地线程区别?</span></strong></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">java中的线程分为两种:守护线程(Daemon)和用户线程(User)。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">任何线程都可以设置为守护线程和用户线程,通过方法Thread.setDaemon(bool on);true则把该线程设置为守护线程,反之则为用户线程。Thread.setDaemon()必须在Thread.start()之前调用,否则运行时会抛出异常。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">两者的区别: <br>唯一的区别是判断虚拟机(JVM)何时离开,Daemon是为其他线程提供服务,如果全部的User Thread已经撤离,Daemon 没有可服务的线程,JVM撤离。也可以理解为守护线程是JVM自动创建的线程(但不一定),用户线程是程序创建的线程;比如JVM的垃圾回收线程是一个守护线程,当所有线程已经撤离,不再产生垃圾,守护线程自然就没事可干了,当垃圾回收线程是Java虚拟机上仅剩的线程时,Java虚拟机会自动离开。</span></p> <p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 25px;"><span style="font-size: 15px;">扩展:Thread Dump打印出来的线程信息,含有daemon字样的线程即为守护进程,可能会有:服务守护进程、编译守护进程、windows下的监听Ctrl+break的守护进程、Finalizer守护进程、引用处理守护进程、GC守护进程。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>2、线程与进程的区别?</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">进程是操作系统分配资源的最小单元,线程是操作系统调度的最小单元。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">一个程序至少有一个进程,一个进程至少有一个线程。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>3、什么是多线程中的上下文切换?</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 25px;"><span style="font-size: 15px;">多线程会共同使用一组计算机上的CPU,而线程数大于给程序分配的CPU数量时,为了让各个线程都有执行的机会,就需要轮转使用CPU。不同的线程切换使用CPU发生的切换数据等就是上下文切换。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>4、死锁与活锁的区别,死锁与饥饿的区别?</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><strong><span style="font-size: 15px;">死锁</span></strong><span style="font-size: 15px;">:是指两个或两个以上的进程(或线程)在执行过程中,因争夺资源而造成的一种互相等待的现象,若无外力作用,它们都将无法推进下去。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">产生死锁的必要条件: <br></span></p> <ul style="list-style-type: disc;" class=" list-paddingleft-2"> <li><p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 10px;"><span style="font-size: 15px;">互斥条件:所谓互斥就是进程在某一时间内独占资源。</span></p></li> <li><p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 10px;"><span style="font-size: 15px;">请求与保持条件:一个进程因请求资源而阻塞时,对已获得的资源保持不放。 <br></span></p></li> <li><p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 10px;"><span style="font-size: 15px;">不剥夺条件:进程已获得资源,在末使用完之前,不能强行剥夺。&nbsp; <br></span></p></li> <li><p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 10px;"><span style="font-size: 15px;">循环等待条件:若干进程之间形成一种头尾相接的循环等待资源关系。</span></p></li> </ul> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;"><strong>活锁</strong>:任务或者执行者没有被阻塞,由于某些条件没有满足,导致一直重复尝试,失败,尝试,失败。<strong><br></strong></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;"><strong>活锁</strong>和<strong>死锁</strong>的区别在于,处于活锁的实体是在不断的改变状态,所谓的“活”, 而处于死锁的实体表现为等待;活锁有可能自行解开,死锁则不能。<strong><br></strong></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;"><strong>饥饿</strong>:一个或者多个线程因为种种原因无法获得所需要的资源,导致一直无法执行的状态。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">Java中导致饥饿的原因: <br></span></p> <ul style="list-style-type: disc;" class=" list-paddingleft-2"> <li><p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 10px;"><span style="font-size: 15px;">高优先级线程吞噬所有的低优先级线程的CPU时间。 <br></span></p></li> <li><p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 10px;"><span style="font-size: 15px;">线程被永久堵塞在一个等待进入同步块的状态,因为其他线程总是能在它之前持续地对该同步块进行访问。 <br></span></p></li> <li><p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 10px;"><span style="font-size: 15px;">线程在等待一个本身也处于永久等待完成的对象(比如调用这个对象的wait方法),因为其他线程总是被持续地获得唤醒。</span></p></li> </ul> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 25px;"><span style="color: rgb(171, 25, 66);"><strong><span style="font-size: 18px;">5、Java中用到的线程调度算法是什么?</span></strong></span></p> <p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 25px;"><span style="font-size: 15px;">采用时间片轮转的方式。可以设置线程的优先级,会映射到下层的系统上面的优先级上,如非特别需要,尽量不要用,防止线程饥饿。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>6、什么是线程组,为什么在Java中不推荐使用?</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">ThreadGroup类,可以把线程归属到某一个线程组中,线程组中可以有线程对象,也可以有线程组,组中还可以有线程,这样的组织结构有点类似于树的形式。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">为什么不推荐使用?因为使用有很多的安全隐患吧,没有具体追究,如果需要使用,推荐使用线程池。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>7、为什么使用Executor框架?</strong></span></p> <ol style="list-style-type: upper-roman;" class=" list-paddingleft-2"> <li><p style="line-height: 1.75em;margin-top: 25px;margin-bottom: 15px;"><span style="font-size: 15px;">每次执行任务创建线程 new Thread()比较消耗性能,创建一个线程是比较耗时、耗资源的。</span></p></li> <li><p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 15px;"><span style="font-size: 15px;">调用 new Thread()创建的线程缺乏管理,被称为野线程,而且可以无限制的创建,线程之间的相互竞争会导致过多占用系统资源而导致系统瘫痪,还有线程之间的频繁交替也会消耗很多系统资源。</span></p></li> <li><p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 25px;"><span style="font-size: 15px;">接使用new Thread() 启动的线程不利于扩展,比如定时执行、定期执行、定时定期执行、线程中断等都不便实现。</span></p></li> </ol> <p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 25px;"><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>8、在Java中Executor和Executors的区别?</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 10px;margin-top: 10px;"><span style="font-size: 15px;">Executors 工具类的不同方法按照我们的需求创建了不同的线程池,来满足业务的需求。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 10px;margin-top: 10px;"><span style="font-size: 15px;">Executor 接口对象能执行我们的线程任务。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 10px;margin-top: 10px;"><span style="font-size: 15px;">ExecutorService接口继承了Executor接口并进行了扩展,提供了更多的方法我们能获得任务执行的状态并且可以获取任务的返回值。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 10px;margin-top: 10px;"><span style="font-size: 15px;">使用ThreadPoolExecutor 可以创建自定义线程池。 <br></span></p> <p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 25px;"><span style="font-size: 15px;">Future 表示异步计算的结果,他提供了检查计算是否完成的方法,以等待计算的完成,并可以使用get()方法获取计算的结果。<br><br></span><span style="color: rgb(171, 25, 66);"><strong><span style="font-size: 18px;">9、什么是原子操作?在Java Concurrency API中有哪些原子类(atomic classes)?</span></strong></span></p> <p style="line-height: 1.75em;margin-bottom: 10px;margin-top: 10px;"><span style="font-size: 15px;">原子操作(atomic operation)意为”不可被中断的一个或一系列操作” 。 <br></span></p> <p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 10px;"><span style="font-size: 15px;">处理器使用基于对缓存加锁或总线加锁的方式来实现多处理器之间的原子操作。 <br></span></p> <p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 10px;"><span style="font-size: 15px;">在Java中可以通过锁和循环CAS的方式来实现原子操作。 CAS操作——Compare &amp; Set,或是 Compare &amp; Swap,现在几乎所有的CPU指令都支持CAS的原子操作。<br><br>原子操作是指一个不受其他操作影响的操作任务单元。原子操作是在多线程环境下避免数据不一致必须的手段。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 10px;margin-top: 10px;"><span style="font-size: 15px;">int++并不是一个原子操作,所以当一个线程读取它的值并加1时,另外一个线程有可能会读到之前的值,这就会引发错误。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">为了解决这个问题,必须保证增加操作是原子的,在JDK1.5之前我们可以使用同步技术来做到这一点。到JDK1.5,java.util.concurrent.atomic包提供了int和long类型的原子包装类,它们可以自动的保证对于他们的操作是原子的并且不需要使用同步。<br><br>java.util.concurrent这个包里面提供了一组原子类。其基本的特性就是在多线程环境下,当有多个线程同时执行这些类的实例包含的方法时,具有排他性,即当某个线程进入方法,执行其中的指令时,不会被其他线程打断,而别的线程就像自旋锁一样,一直等到该方法执行完成,才由JVM从等待队列中选择一个另一个线程进入,这只是一种逻辑上的理解。<br><br>原子类:AtomicBoolean,AtomicInteger,AtomicLong,AtomicReference <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">原子数组:AtomicIntegerArray,AtomicLongArray,AtomicReferenceArray <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">原子属性更新器:AtomicLongFieldUpdater,AtomicIntegerFieldUpdater,AtomicReferenceFieldUpdater <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">解决ABA问题的原子类:AtomicMarkableReference(通过引入一个boolean来反映中间有没有变过),AtomicStampedReference(通过引入一个int来累加来反映中间有没有变过)<br><br></span><span style="color: rgb(171, 25, 66);"><strong><span style="font-size: 18px;">10、Java Concurrency API中的Lock接口(Lock interface)是什么?对比同步它有什么优势?</span></strong></span></p> <p style="line-height: 1.75em;margin-top: 25px;margin-bottom: 15px;"><span style="font-size: 15px;">Lock接口比同步方法和同步块提供了更具扩展性的锁操作。 <br></span></p> <p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 15px;"><span style="font-size: 15px;">他们允许更灵活的结构,可以具有完全不同的性质,并且可以支持多个相关类的条件对象。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">它的优势有:</span></p> <ul style="list-style-type: disc;" class=" list-paddingleft-2"> <li><p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">可以使锁更公平</span></p></li> <li><p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">可以使线程在等待锁的时候响应中断</span></p></li> <li><p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">可以让线程尝试获取锁,并在无法获取锁的时候立即返回或者等待一段时间</span></p></li> <li><p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">可以在不同的范围,以不同的顺序获取和释放锁</span></p></li> </ul> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">整体上来说Lock是synchronized的扩展版,Lock提供了无条件的、可轮询的(tryLock方法)、定时的(tryLock带参方法)、可中断的(lockInterruptibly)、可多条件队列的(newCondition方法)锁操作。另外Lock的实现类基本都支持非公平锁(默认)和公平锁,synchronized只支持非公平锁,当然,在大部分情况下,非公平锁是高效的选择。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>11、什么是Executors框架?</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 25px;"><span style="font-size: 15px;">Executor框架是一个根据一组执行策略调用,调度,执行和控制的异步任务的框架。</span></p> <p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 25px;"><span style="font-size: 15px;">无限制的创建线程会引起应用程序内存溢出。所以创建一个线程池是个更好的的解决方案,因为可以限制线程的数量并且可以回收再利用这些线程。利用Executors框架可以非常方便的创建一个线程池。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>12、什么是阻塞队列?阻塞队列的实现原理是什么?如何使用阻塞队列来实现生产者-消费者模型?</strong></span></p> <p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 20px;"><span style="font-size: 15px;">阻塞队列(BlockingQueue)是一个支持两个附加操作的队列。</span></p> <p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 20px;"><span style="font-size: 15px;">这两个附加的操作是:在队列为空时,获取元素的线程会等待队列变为非空。当队列满时,存储元素的线程会等待队列可用。</span></p> <p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 20px;"><span style="font-size: 15px;">阻塞队列常用于生产者和消费者的场景,生产者是往队列里添加元素的线程,消费者是从队列里拿元素的线程。阻塞队列就是生产者存放元素的容器,而消费者也只从容器里拿元素。</span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">JDK7提供了7个阻塞队列。分别是: <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">ArrayBlockingQueue :一个由数组结构组成的有界阻塞队列。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">LinkedBlockingQueue :一个由链表结构组成的有界阻塞队列。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">PriorityBlockingQueue :一个支持优先级排序的无界阻塞队列。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">DelayQueue:一个使用优先级队列实现的无界阻塞队列。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">SynchronousQueue:一个不存储元素的阻塞队列。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">LinkedTransferQueue:一个由链表结构组成的无界阻塞队列。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 5px;"><span style="font-size: 15px;">LinkedBlockingDeque:一个由链表结构组成的双向阻塞队列。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 20px;"><span style="font-size: 15px;">Java 5之前实现同步存取时,可以使用普通的一个集合,然后在使用线程的协作和线程同步可以实现生产者,消费者模式,主要的技术就是用好,wait ,notify,notifyAll,sychronized这些关键字。而在java 5之后,可以使用阻塞队列来实现,此方式大大简少了代码量,使得多线程编程更加容易,安全方面也有保障。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 20px;"><span style="font-size: 15px;">BlockingQueue接口是Queue的子接口,它的主要用途并不是作为容器,而是作为线程同步的的工具,因此他具有一个很明显的特性,当生产者线程试图向BlockingQueue放入元素时,如果队列已满,则线程被阻塞,当消费者线程试图从中取出一个元素时,如果队列为空,则该线程会被阻塞,正是因为它所具有这个特性,所以在程序中多个线程交替向BlockingQueue中放入元素,取出元素,它可以很好的控制线程之间的通信。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 20px;"><span style="font-size: 15px;">阻塞队列使用最经典的场景就是socket客户端数据的读取和解析,读取数据的线程不断将数据放入队列,然后解析线程不断从队列取数据解析。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>13、什么是Callable和Future?</strong></span></p> <p style="line-height: 1.75em;margin-top: 25px;margin-bottom: 15px;"><span style="font-size: 15px;">Callable接口类似于Runnable,从名字就可以看出来了,但是Runnable不会返回结果,并且无法抛出返回结果的异常,而Callable功能更强大一些,被线程执行后,可以返回值,这个返回值可以被Future拿到,也就是说,Future可以拿到异步执行任务的返回值。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">可以认为是带有回调的Runnable。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">Future接口表示异步任务,是还没有完成的任务给出的未来结果。所以说Callable用于产生结果,Future用于获取结果。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>14、什么是FutureTask?使用ExecutorService启动任务。</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 25px;"><span style="font-size: 15px;">在Java并发程序中FutureTask表示一个可以取消的异步运算。它有启动和取消运算、查询运算是否完成和取回运算结果等方法。只有当运算完成的时候结果才能取回,如果运算尚未完成get方法将会阻塞。一个FutureTask对象可以对调用了Callable和Runnable的对象进行包装,由于FutureTask也是调用了Runnable接口所以它可以提交给Executor来执行。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>15、什么是并发容器的实现?</strong></span></p> <p style="line-height: 1.75em;margin-top: 25px;margin-bottom: 15px;"><span style="font-size: 15px;">何为同步容器:可以简单地理解为通过synchronized来实现同步的容器,如果有多个线程调用同步容器的方法,它们将会串行执行。比如Vector,Hashtable,以及Collections.synchronizedSet,synchronizedList等方法返回的容器。 <br></span></p> <p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 15px;"><span style="font-size: 15px;">可以通过查看Vector,Hashtable等这些同步容器的实现代码,可以看到这些容器实现线程安全的方式就是将它们的状态封装起来,并在需要同步的方法上加上关键字synchronized。</span></p> <p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 25px;"><span style="font-size: 15px;">并发容器使用了与同步容器完全不同的加锁策略来提供更高的并发性和伸缩性,例如在ConcurrentHashMap中采用了一种粒度更细的加锁机制,可以称为分段锁,在这种锁机制下,允许任意数量的读线程并发地访问map,并且执行读操作的线程和写操作的线程也可以并发的访问map,同时允许一定数量的写操作线程并发地修改map,所以它可以在并发环境下实现更高的吞吐量。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>16、多线程同步和互斥有几种实现方法,都是什么?</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">线程同步是指线程之间所具有的一种制约关系,一个线程的执行依赖另一个线程的消息,当它没有得到另一个线程的消息时应等待,直到消息到达时才被唤醒。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">线程互斥是指对于共享的进程系统资源,在各单个线程访问时的排它性。当有若干个线程都要使用某一共享资源时,任何时刻最多只允许一个线程去使用,其它要使用该资源的线程必须等待,直到占用资源者释放该资源。线程互斥可以看成是一种特殊的线程同步。</span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">线程间的同步方法大体可分为两类:用户模式和内核模式。顾名思义,内核模式就是指利用系统内核对象的单一性来进行同步,使用时需要切换内核态与用户态,而用户模式就是不需要切换到内核态,只在用户态完成操作。 <br></span></p> <p style="line-height: 1.75em;margin-bottom: 15px;margin-top: 15px;"><span style="font-size: 15px;">用户模式下的方法有:原子操作(例如一个单一的全局变量),临界区。内核模式下的方法有:事件,信号量,互斥量。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>17、什么是竞争条件?你怎样发现和解决竞争?</strong></span></p> <p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 25px;"><span style="font-size: 15px;">当多个进程都企图对共享数据进行某种处理,而最后的结果又取决于进程运行的顺序时,则我们认为这发生了竞争条件(race condition)。<br><br></span><span style="font-size: 18px;color: rgb(171, 25, 66);"><strong>18、你将如何使用thread dump?你将如何分析Thread dump?</strong></span></p> <p style="text-align: center;"><img class="" data-backh="371" data-backw="558" data-before-oversubscription-url="https://mmbiz.qpic.cn/mmbiz_jpg/dwoMQBQlZ1RqP4OXibS6WryuOQiabBWMAvHZBzjgiaZoibREQZx6G7CZCviaztDhPurkP8Dia1GdbR1YQ6H1ppOS7bCQ/0?wx_fmt=jpeg" data-croporisrc="/upload/968773e931d098105665408eff1b88d8.jpg" data-cropx1="0" data-cropx2="580" data-cropy1="14.551971326164875" data-cropy2="375.23297491039426" data-ratio="0.6224137931034482" data-s="300,640" src="https://mmbiz.qpic.cn/mmbiz_jpg/dwoMQBQlZ1SU2t3mSR3icWx6Mzcj17eRFoQibMGcJsSkIYSzro6z9LFFv9YpNr7osJBm9RbdwH6p95I30hsFbdDQ/640" data-type="jpeg" data-w="580" style="width: 558px;height: 347px;"></p> <ul style="list-style-type: disc;" class=" list-paddingleft-2"> <li><p style="line-height: 1.75em;margin-top: 25px;margin-bottom: 5px;"><strong><span style="font-size: 15px;">新建状态(New) </span></strong><span style="font-size: 15px;"><br></span></p><p style="line-height: 1.75em;margin-top: 5px;margin-bottom: 15px;"><span style="font-size: 15px;">用new语句创建的线程处于新建状态,此时它和其他Java对象一样,仅仅在堆区中被分配了内存。</span></p></li> <li><p style="line-height: 1.75em;margin-top: 15px;margin-bottom: 5px;"><strong><span style="font-size: 15px;">就绪状态(Runnable) </span></strong><span style="font-size: 15px;"><br></span></p><p style="line-height: 1.75em;margin-top: 5px;margin-bottom: 15px;"><span style="font-size: 15px;">当一个线程对象创建后,其他线程调用它的start()方法,该线程就进入就绪状态,Java虚拟机会为它创建方法调用栈和程序计数器。处于这个状态的线程位于可运行池中,等待获得CPU的使用权。</span></p></li> <li><p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 15px;"><strong><span style="font-size: 15px;">运行状态(Running) </span></strong><span style="font-size: 15px;"><br></span></p><p style="line-height: 1.75em;margin-top: 5px;margin-bottom: 15px;"><span style="font-size: 15px;">处于这个状态的线程占用CPU,执行程序代码。只有处于就绪状态的线程才有机会转到运行状态。</span></p></li> <li><p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 15px;"><strong><span style="font-size: 15px;">阻塞状态(Blocked) </span></strong><span style="font-size: 15px;"><br></span></p><p style="line-height: 1.75em;margin-top: 5px;margin-bottom: 15px;"><span style="font-size: 15px;">阻塞状态是指线程因为某些原因放弃CPU,暂时停止运行。当线程处于阻塞状态时,Java虚拟机不会给线程分配CPU。直到线程重新进入就绪状态,它才有机会转到运行状态。 <br></span></p><p style="line-height: 1.75em;margin-top: 5px;margin-bottom: 15px;"><span style="font-size: 15px;">阻塞状态可分为以下3种: </span></p><p style="line-height: 1.75em;margin-bottom: 10px;margin-top: 10px;"><span style="font-size: 15px;">① 位于对象等待池中的阻塞状态(Blocked in object’s wait pool):当线程处于运行状态时,如果执行了某个对象的wait()方法,Java虚拟机就会把线程放到这个对象的等待池中,这涉及到“线程通信”的内容。</span></p><p style="line-height: 1.75em;margin-bottom: 10px;margin-top: 10px;"><span style="font-size: 15px;">② 位于对象锁池中的阻塞状态(Blocked in object’s lock pool):当线程处于运行状态时,试图获得某个对象的同步锁时,如果该对象的同步锁已经被其他线程占用,Java虚拟机就会把这个线程放到这个对象的锁池中,这涉及到“线程同步”的内容。</span></p><p style="line-height: 1.75em;margin-top: 10px;margin-bottom: 15px;"><span style="font-size: 15px;">③ 其他阻塞状态(Otherwise Blocked):当前线程执行了sleep()方法,或者调用了其他线程的join()方法,或者发出了I/O请求时,就会进入这个状态。</span></p></li> <li><p style="line-height: 1.75em;margin-bottom: 5px;margin-top: 15px;"><strong><span style="font-size: 15px;">死亡状态(Dead)</span></strong><span style="font-size: 15px;"> </span></p><p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 5px;"><span style="font-size: 15px;">当线程退出run()方法时,就进入死亡状态,该线程结束生命周期。</span></p></li> </ul> <p style="line-height: 1.75em;margin-bottom: 25px;margin-top: 25px;"><span style="font-size: 15px;">我们运行之前的那个死锁代码SimpleDeadLock.java,然后尝试输出信息(/*这是注释,作者自己加的*/):</span><br></p> <pre style="box-sizing: border-box;margin: 0px 0.8em;padding: 0px;font-size: 0.9em;color: rgb(199, 37, 78);line-height: inherit;letter-spacing: normal;border-radius: 3px;background-color: rgb(249, 242, 244);font-style: normal;font-variant-ligatures: normal;font-variant-caps: normal;font-weight: 300;orphans: 2;text-align: justify;text-indent: 0px;text-transform: none;widows: 2;word-spacing: 0px;-webkit-text-stroke-width: 0px;text-decoration-style: initial;text-decoration-color: initial;"><code class="hljs sql" style="box-sizing: border-box;margin: 0px 0.2em;padding: 0.5em;font-size: 14px;color: rgb(169, 183, 198);line-height: 18px;letter-spacing: 0px;border-color: rgb(204, 204, 204);border-style: solid;border-width: 1px;border-radius: 3px;background: rgb(40, 43, 46) none repeat scroll 0% 0%;font-family: Consolas, Inconsolata, Courier, monospace;display: block;white-space: pre !important;overflow-wrap: normal !important;word-break: normal !important;overflow-x: auto;overflow-y: auto !important;font-weight: normal;word-spacing: 0px;"><span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">/*&nbsp;时间,jvm信息&nbsp;*/</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">2017-11-01&nbsp;17:36:28<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">Full&nbsp;thread&nbsp;dump&nbsp;Java&nbsp;HotSpot(TM)&nbsp;64-Bit&nbsp;Server&nbsp;VM&nbsp;(25.144-b01&nbsp;mixed&nbsp;mode):<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">/*&nbsp;线程名称:DestroyJavaVM<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">编号:#13<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">优先级:5<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">系统优先级:0<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">jvm内部线程id:0x0000000001c88800<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">对应系统线程id(NativeThread&nbsp;ID):0x1c18<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">线程状态:&nbsp;waiting&nbsp;on&nbsp;condition&nbsp;[0x0000000000000000]&nbsp;&nbsp;(等待某个条件)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">线程详细状态:java.lang.Thread.State:&nbsp;RUNNABLE&nbsp;&nbsp;及之后所有*/</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">"DestroyJavaVM"&nbsp;<span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">#13&nbsp;prio=5&nbsp;os_prio=0&nbsp;tid=0x0000000001c88800&nbsp;nid=0x1c18&nbsp;waiting&nbsp;on&nbsp;condition&nbsp;[0x0000000000000000]</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;java.lang.Thread.State:&nbsp;RUNNABLE<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">"Thread-1"&nbsp;<span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">#12&nbsp;prio=5&nbsp;os_prio=0&nbsp;tid=0x0000000018d49000&nbsp;nid=0x17b8&nbsp;waiting&nbsp;for&nbsp;monitor&nbsp;entry&nbsp;[0x0000000019d7f000]</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">/*&nbsp;线程状态:阻塞(在对象同步上)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;代码位置:at&nbsp;com.leo.interview.SimpleDeadLock$B.run(SimpleDeadLock.java:56)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;等待锁:0x00000000d629b4d8&nbsp;<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;已经获得锁:0x00000000d629b4e8*/</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;java.lang.Thread.State:&nbsp;BLOCKED&nbsp;(on&nbsp;object&nbsp;monitor)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;at&nbsp;com.leo.interview.SimpleDeadLock$B.run(SimpleDeadLock.java:56)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;waiting&nbsp;to&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">lock</span>&nbsp;&lt;<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">0x00000000d629b4d8</span>&gt;&nbsp;(a&nbsp;java.lang.Object)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">locked</span>&nbsp;&lt;<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">0x00000000d629b4e8</span>&gt;&nbsp;(a&nbsp;java.lang.Object)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-string" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(238, 220, 112);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">"Thread-0"</span>&nbsp;<span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">#11&nbsp;prio=5&nbsp;os_prio=0&nbsp;tid=0x0000000018d44000&nbsp;nid=0x1ebc&nbsp;waiting&nbsp;for&nbsp;monitor&nbsp;entry&nbsp;[0x000000001907f000]</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;java.lang.Thread.State:&nbsp;BLOCKED&nbsp;(<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">on</span>&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">object</span>&nbsp;monitor)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;com.leo.interview.SimpleDeadLock$A.run(SimpleDeadLock.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">34</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;waiting&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">to</span>&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">lock</span>&nbsp;&lt;<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">0x00000000d629b4e8</span>&gt;&nbsp;(a&nbsp;java.lang.Object)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">locked</span>&nbsp;&lt;<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">0x00000000d629b4d8</span>&gt;&nbsp;(a&nbsp;java.lang.Object)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-string" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(238, 220, 112);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">"Service&nbsp;Thread"</span>&nbsp;<span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">#10&nbsp;daemon&nbsp;prio=9&nbsp;os_prio=0&nbsp;tid=0x0000000018ca5000&nbsp;nid=0x1264&nbsp;runnable&nbsp;[0x0000000000000000]</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;java.lang.Thread.State:&nbsp;RUNNABLE<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-string" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(238, 220, 112);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">"C1&nbsp;CompilerThread2"</span>&nbsp;<span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">#9&nbsp;daemon&nbsp;prio=9&nbsp;os_prio=2&nbsp;tid=0x0000000018c46000&nbsp;nid=0xb8c&nbsp;waiting&nbsp;on&nbsp;condition&nbsp;[0x0000000000000000]</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;java.lang.Thread.State:&nbsp;RUNNABLE<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-string" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(238, 220, 112);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">"C2&nbsp;CompilerThread1"</span>&nbsp;<span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">#8&nbsp;daemon&nbsp;prio=9&nbsp;os_prio=2&nbsp;tid=0x0000000018be4800&nbsp;nid=0x1db4&nbsp;waiting&nbsp;on&nbsp;condition&nbsp;[0x0000000000000000]</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;java.lang.Thread.State:&nbsp;RUNNABLE<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-string" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(238, 220, 112);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">"C2&nbsp;CompilerThread0"</span>&nbsp;<span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">#7&nbsp;daemon&nbsp;prio=9&nbsp;os_prio=2&nbsp;tid=0x0000000018be3800&nbsp;nid=0x810&nbsp;waiting&nbsp;on&nbsp;condition&nbsp;[0x0000000000000000]</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;java.lang.Thread.State:&nbsp;RUNNABLE<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-string" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(238, 220, 112);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">"Monitor&nbsp;Ctrl-Break"</span>&nbsp;<span class="hljs-comment" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(128, 128, 128);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">#6&nbsp;daemon&nbsp;prio=5&nbsp;os_prio=0&nbsp;tid=0x0000000018bcc800&nbsp;nid=0x1c24&nbsp;runnable&nbsp;[0x00000000193ce000]</span><br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;java.lang.Thread.State:&nbsp;RUNNABLE<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;java.net.SocketInputStream.socketRead0(<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">Native</span>&nbsp;Method)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;java.net.SocketInputStream.socketRead(SocketInputStream.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">116</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;java.net.SocketInputStream.read(SocketInputStream.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">171</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;java.net.SocketInputStream.read(SocketInputStream.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">141</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">284</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">326</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;sun.nio.cs.StreamDecoder.read(StreamDecoder.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">178</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">locked</span>&nbsp;&lt;<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">0x00000000d632b928</span>&gt;&nbsp;(a&nbsp;java.io.InputStreamReader)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;java.io.InputStreamReader.read(InputStreamReader.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">184</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;java.io.BufferedReader.fill(BufferedReader.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">161</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;java.io.BufferedReader.readLine(BufferedReader.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">324</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;-&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">locked</span>&nbsp;&lt;<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">0x00000000d632b928</span>&gt;&nbsp;(a&nbsp;java.io.InputStreamReader)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">at</span>&nbsp;java.io.BufferedReader.readLine(BufferedReader.java:<span class="hljs-number" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(174, 135, 250);line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">389</span>)<br style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: inherit;line-height: inherit;overflow-wrap: inherit !important;word-break: inherit !important;">&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-keyword" style="box-sizing: border-box;margin: 0px;padding: 0px;font-size: inherit;color: rgb(248, 35, 117);line-height: inherit;overflow-wrap: inherit !important;word-break:

Charles抓包学习

作者:じ☆ve宝贝

> Charles其实是一款代理服务器,通过过将自己设置成系统(电脑或者浏览器)的网络访问代理服务器,然后截取请求和请求结果达到分析抓包的目的。该软件是用Java写的,能够在Windows,Mac,Linux上使用。安装Charles的时候要先装好Java环境。 ## Charles所在电脑与手机在同一局域网内 ## 1 代理配置 ![Charles代理配置](/upload/57269e1ad3d94a8d9d61fdedf7740629.png) ![Charles代理配置](/upload/dfadf9ed77c5464fb6a1dfe2bf982094.png) ## 2 证书安装 ** 电脑证书安装** ![Charles SSL证书安装](/upload/3143c34850e241bfaa6fac20b0e7b083.png) **手机代理配置** ![Charles IOS代理设置](/upload/aa316dffe6ac4ac0b53c7d6cb5ad263b.jpg "Charles IOS代理设置") 配置完成,会看到一个charles与手机端的连接提示弹窗,选择allow即可(此处可能不出现,关闭代理配置多尝试几次)。 ![](/upload/f5f36f644c09491ca9b50ee6cd8a0211.png) **手机证书安装** 打开 Safari 输入地址:http://chls.pro/ssl 下载描述文件安装。 **IOS信任证书状态** ` 设置-通用-关于本机-证书信任设置-针对根证书启用完全信任 ` ## SSL代理配置 **Proxy -> SSL Proxy** ![](/upload/371f3038e0d24caabf6cdd3b40173846.png) 这样在手机访问就会被Charles代理,SSL代理原理可以即 “中间人” 这种方式。希望能对大家有帮助!

一文快速搞懂MySQL InnoDB事务ACID实现原理

作者:微信小助手

<section style="box-sizing: border-box;font-size: 16px;"> <section style="box-sizing: border-box;" powered-by="xiumi.us"> <section style="margin-top: 10px;margin-bottom: 10px;box-sizing: border-box;"> <section style="padding-top: 10px;padding-right: 10px;padding-left: 10px;box-sizing: border-box;background-color: rgb(239, 239, 239);"> <span style="display: inline-block;width: 5%;line-height: 0.8;font-weight: bolder;font-size: 48px;box-sizing: border-box;"> <section style="box-sizing: border-box;"> “ </section></span> <section style="display: inline-block;vertical-align: top;float: right;width: 90%;line-height: 1.5;font-size: 15px;color: rgb(89, 89, 89);box-sizing: border-box;"> <p style="box-sizing: border-box;"><span style="letter-spacing: 1px;">说到数据库事务,想到的就是要么都做修改,要么都不做,或者是 ACID 的概念。其实事务的本质就是锁、并发和重做日志的结合体。</span></p> </section> <section style="clear: both;box-sizing: border-box;"></section> </section> </section> </section> </section> <p style="line-height: 1.75em;"><br></p> <p style="text-align: center;margin-left: 8px;margin-right: 8px;margin-bottom: 5px;"><img class="rich_pages" data-copyright="0" data-ratio="0.4963235294117647" data-s="300,640" src="/upload/f2704d3961a51ceaed0574f7c07898c3.png" data-type="png" data-w="816" style=""></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">这一篇主要讲一下 InnoDB 中的事务到底是如何实现 ACID 的:</span></p> <ul class=" list-paddingleft-2" style="list-style-type: disc;"> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">原子性(atomicity)</span></strong></p></li> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">一致性(consistency)</span></strong></p></li> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">隔离性(isolation)</span></strong></p></li> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">持久性(durability)</span></strong></p></li> </ul> <h2 style="line-height: normal;"><br></h2> <section style="box-sizing: border-box;font-size: 16px;"> <section style="box-sizing: border-box;" powered-by="xiumi.us"> <section style="border-bottom-width: 1px;border-bottom-style: solid;border-bottom-color: black;margin-top: 0.5em;margin-bottom: 0.5em;line-height: 1.2;box-sizing: border-box;"> <section style="display: inline-block;border-bottom-width: 6px;border-bottom-style: solid;border-color: rgb(89, 89, 89);margin-bottom: -1px;font-size: 20px;color: rgb(89, 89, 89);box-sizing: border-box;"> <p style="box-sizing: border-box;">隔离性</p> </section> </section> </section> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">隔离性的实现原理就是锁,因而隔离性也可以称为并发控制、锁等。事务的隔离性要求每个读写事务的对象对其他事务的操作对象能互相分离。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">再者,比如操作缓冲池中的 LRU 列表,删除,添加、移动 LRU 列表中的元素,为了保证一致性那么就要锁的介入。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">InnoDB 使用锁为了支持对共享资源进行并发访问,提供数据的完整性和一致性。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">那么到底 InnoDB 支持什么样的锁呢?我们先来看下 InnoDB 的锁的介绍:</span></p> <h3 style="line-height: normal;"><br></h3> <section style="box-sizing: border-box;font-size: 16px;"> <section style="box-sizing: border-box;" powered-by="xiumi.us"> <section style="margin-top: 10px;margin-bottom: 10px;box-sizing: border-box;"> <section style="width: 0.6em;display: inline-block;vertical-align: middle;box-sizing: border-box;"> <span style="width: 0.6em;height: 0.6em;display: block;opacity: 0.2;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span> <strong><span style="width: 0.6em;height: 0.6em;display: block;opacity: 0.6;margin-top: 2px;margin-bottom: 2px;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span><span style="width: 0.6em;height: 0.6em;display: block;opacity: 1;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span></strong> </section> <section style="display: inline-block;vertical-align: middle;font-size: 18px;padding-left: 5px;color: rgb(89, 89, 89);box-sizing: border-box;"> <p style="box-sizing: border-box;"><strong>InnoDB 中的锁</strong></p> </section> </section> </section> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">你可能听过各种各样的 InnoDB 的数据库锁,Gap 锁,共享锁,排它锁,读锁,写锁等等。但是 InnoDB 的标准实现的锁只有 2 类,一种是行级锁,一种是意向锁。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">InnoDB 实现了如下两种标准的行级锁:</span></p> <ul class=" list-paddingleft-2" style="list-style-type: disc;"> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">共享锁(读锁 S Lock),</span></strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">允许事务读一行数据。</span></p></li> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">排它锁(写锁 X Lock),</span></strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">允许事务删除一行数据或者更新一行数据。</span></p></li> </ul> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">行级锁中,除了 S 和 S 兼容,其他都不兼容。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">InnoDB 支持两种意向锁(即为表级别的锁):</span></p> <ul class=" list-paddingleft-2" style="list-style-type: disc;"> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">意向共享锁(读锁 IS Lock),</span></strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">事务想要获取一张表的几行数据的共享锁,事务在给一个数据行加共享锁前必须先取得该表的 IS 锁。</span></p></li> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">意向排他锁(写锁 IX Lock),</span></strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">事务想要获取一张表中几行数据的排它锁,事务在给一个数据行加排它锁前必须先取得该表的 IX 锁。</span></p></li> </ul> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">首先解释一下意向锁,以下为意向锁的意图解释:</span></p> <section style="box-sizing: border-box;font-size: 16px;"> <section style="box-sizing: border-box;" powered-by="xiumi.us"> <section style="text-align: center;margin-top: 0.5em;margin-bottom: 0.5em;box-sizing: border-box;"> <section style="border: 3px solid rgb(204, 204, 204);box-shadow: rgb(102, 102, 102) 0.2em 0.2em 0.5em;padding: 10px;box-sizing: border-box;"> <section style="box-sizing: border-box;" powered-by="xiumi.us"> <section style="box-sizing: border-box;"> <section style="text-align: left;color: rgb(89, 89, 89);font-size: 15px;box-sizing: border-box;"> <p style="box-sizing: border-box;"><span style="font-size: 14px;letter-spacing: 1px;"><em>The main purpose of IX and IS locks is to show that someone is locking a row, or going to lock a row in the table.</em></span><br style="box-sizing: border-box;"></p> </section> </section> </section> </section> </section> </section> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">大致意思是加意向锁为了表明某个事务正在锁定一行或者将要锁定一行数据。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">首先申请意向锁的动作是 InnoDB 完成的,怎么理解意向锁呢?例如:事务 A 要对一行记录 R 进行上 X 锁,那么 InnoDB 会先申请表的 IX 锁,再锁定记录 R 的 X 锁。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">在事务 A 完成之前,事务 B 想要来个全表操作,此时直接在表级别的 IX 就告诉事务 B 需要等待而不需要在表上判断每一行是否有锁。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">意向排它锁存在的价值在于节约 InnoDB 对于锁的定位和处理性能。另外注意了,除了全表扫描以外意向锁都不会阻塞。</span></p> <p style="line-height: normal;"><br></p> <section style="box-sizing: border-box;font-size: 16px;"> <section style="box-sizing: border-box;" powered-by="xiumi.us"> <section style="margin-top: 10px;margin-bottom: 10px;box-sizing: border-box;"> <section style="width: 0.6em;display: inline-block;vertical-align: middle;box-sizing: border-box;"> <span style="width: 0.6em;height: 0.6em;display: block;opacity: 0.2;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span> <strong><span style="width: 0.6em;height: 0.6em;display: block;opacity: 0.6;margin-top: 2px;margin-bottom: 2px;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span><span style="width: 0.6em;height: 0.6em;display: block;opacity: 1;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span></strong> </section> <section style="display: inline-block;vertical-align: middle;font-size: 18px;padding-left: 5px;color: rgb(89, 89, 89);box-sizing: border-box;"> <p style="box-sizing: border-box;"><strong>锁的算法</strong></p> </section> </section> </section> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">InnoDB 有 3 种行锁的算法:</span></p> <ul class=" list-paddingleft-2" style="list-style-type: disc;"> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">Record Lock:</span></strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">单个行记录上的锁。</span></p></li> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">Gap Lock:</span></strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">间隙锁,锁定一个范围,而非记录本身。</span></p></li> <li><p style="text-align: justify;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">Next-Key Lock:</span></strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">结合 Gap Lock 和 Record Lock,锁定一个范围,并且锁定记录本身。主要解决的问题是 RR 隔离级别下的幻读。</span></p></li> </ul> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">这里主要讲一下 Next-Key Lock。MySQL 默认隔离级别 RR 下,这时默认采用 Next-Key locks。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">这种间隙锁的目的就是为了阻止多个事务将记录插入到同一范围内从而导致幻读。注意了,如果走唯一索引,那么 Next-Key Lock 会降级为 Record Lock。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">前置条件为事务隔离级别为 RR 且 SQL 走的非唯一索引、主键索引。</span><span style="color: rgb(89, 89, 89);font-size: 15px;letter-spacing: 1px;line-height: 1.75em;">如果不是则根本不会有 Gap 锁!先举个例子来讲一下 Next-Key Lock。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">首先建立一张表:</span></p> <section class="output_wrapper" style="font-size: 16px;color: rgb(62, 62, 62);line-height: 1.6;letter-spacing: 0px;font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;"> <pre style="font-size: inherit;color: inherit;line-height: inherit;"><code class="hljs vbscript" style="margin-right: 2px;margin-left: 2px;line-height: 18px;font-size: 14px;letter-spacing: 0px;font-family: Consolas, Inconsolata, Courier, monospace;border-radius: 0px;color: rgb(169, 183, 198);padding: 0.5em;display: block !important;word-wrap: normal !important;word-break: normal !important;overflow: auto !important;background: rgb(40, 43, 46);">mysql&gt;&nbsp;show&nbsp;create&nbsp;table&nbsp;m_test_db.M;<br>+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+<br>|&nbsp;Table&nbsp;|&nbsp;Create&nbsp;Table&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|<br>+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+<br>|&nbsp;M&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;|&nbsp;CREATE&nbsp;TABLE&nbsp;`M`&nbsp;(<br>&nbsp;&nbsp;`id`&nbsp;<span class="hljs-built_in" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">int</span>(<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">11</span>)&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">NOT</span>&nbsp;<span class="hljs-literal" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">NULL</span>&nbsp;AUTO_INCREMENT,<br>&nbsp;&nbsp;`user_id`&nbsp;varchar(<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">45</span>)&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">DEFAULT</span>&nbsp;<span class="hljs-literal" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">NULL</span>,<br>&nbsp;&nbsp;`name`&nbsp;varchar(<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">45</span>)&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">DEFAULT</span>&nbsp;<span class="hljs-literal" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">NULL</span>,<br>&nbsp;&nbsp;PRIMARY&nbsp;KEY&nbsp;(`id`),<br>&nbsp;&nbsp;KEY&nbsp;`IDX_USER_ID`&nbsp;(`user_id`)<br>)&nbsp;ENGINE=InnoDB&nbsp;AUTO_INCREMENT=<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">15</span>&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">DEFAULT</span>&nbsp;CHARSET=utf8&nbsp;|<br>+-------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+<br><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">1</span>&nbsp;row&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">in</span>&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">set</span>&nbsp;(<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0.00</span>&nbsp;sec)<br></code></pre> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">首先 Session A 去拿到 user_id 为 26 的 X 锁,用 force index,强制走这个非唯一辅助索引,因为这张表里的数据很少。</span></p> <section class="output_wrapper" style="font-size: 16px;color: rgb(62, 62, 62);line-height: 1.6;letter-spacing: 0px;font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;"> <pre style="font-size: inherit;color: inherit;line-height: inherit;"><code class="hljs ruby" style="margin-right: 2px;margin-left: 2px;line-height: 18px;font-size: 14px;letter-spacing: 0px;font-family: Consolas, Inconsolata, Courier, monospace;border-radius: 0px;color: rgb(169, 183, 198);padding: 0.5em;display: block !important;word-wrap: normal !important;word-break: normal !important;overflow: auto !important;background: rgb(40, 43, 46);">mysql&gt;&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">begin</span>;<br>Query&nbsp;OK,&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0</span>&nbsp;rows&nbsp;affected&nbsp;(<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0</span>.<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">00</span>&nbsp;sec)<br><br>mysql&gt;&nbsp;select&nbsp;*&nbsp;from&nbsp;m_test_db.M&nbsp;force&nbsp;index(IDX_USER_ID)&nbsp;where&nbsp;user_id&nbsp;=&nbsp;<span class="hljs-string" style="font-size: inherit;line-height: inherit;color: rgb(238, 220, 112);word-wrap: inherit !important;word-break: inherit !important;">'26'</span>&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">for</span>&nbsp;update;<br>+----+---------+-------+<br><span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;">|&nbsp;id&nbsp;|</span>&nbsp;user_id&nbsp;<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;">|&nbsp;name&nbsp;&nbsp;|</span><br>+----+---------+-------+<br><span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;">|&nbsp;&nbsp;5&nbsp;|</span>&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">26</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;">|&nbsp;jerry&nbsp;|</span><br><span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;">|&nbsp;&nbsp;6&nbsp;|</span>&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">26</span>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;">|&nbsp;ketty&nbsp;|</span><br>+----+---------+-------+<br><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">2</span>&nbsp;rows&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">in</span>&nbsp;set&nbsp;(<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0</span>.<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">00</span>&nbsp;sec)<br></code></pre> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">然后 Session B 插入数据:</span></p> <section class="output_wrapper" style="font-size: 16px;color: rgb(62, 62, 62);line-height: 1.6;letter-spacing: 0px;font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;"> <pre style="font-size: inherit;color: inherit;line-height: inherit;"><code class="hljs cs" style="margin-right: 2px;margin-left: 2px;line-height: 18px;font-size: 14px;letter-spacing: 0px;font-family: Consolas, Inconsolata, Courier, monospace;border-radius: 0px;color: rgb(169, 183, 198);padding: 0.5em;display: block !important;word-wrap: normal !important;word-break: normal !important;overflow: auto !important;background: rgb(40, 43, 46);">mysql&gt;&nbsp;begin;<br>Query&nbsp;OK,&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0</span>&nbsp;<span class="hljs-function" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">rows&nbsp;<span class="hljs-title" style="font-size: inherit;line-height: inherit;color: rgb(165, 218, 45);word-wrap: inherit !important;word-break: inherit !important;">affected</span>&nbsp;(<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0.00</span>&nbsp;sec</span>)<br><br>mysql&gt;&nbsp;insert&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;word-wrap: inherit !important;word-break: inherit !important;">into</span>&nbsp;m_test_db.M&nbsp;<span class="hljs-title" style="font-size: inherit;line-height: inherit;color: rgb(165, 218, 45);word-wrap: inherit !important;word-break: inherit !important;">values</span>&nbsp;(<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">8</span>,<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">25</span>,<span class="hljs-string" style="font-size: inherit;line-height: inherit;color: rgb(238, 220, 112);word-wrap: inherit !important;word-break: inherit !important;">'GrimMjx'</span></span>)</span>;<br>ERROR&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">1205</span>&nbsp;(HY000):&nbsp;Lock&nbsp;wait&nbsp;timeout&nbsp;exceeded;&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">try</span>&nbsp;restarting&nbsp;transaction<br></code></pre> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">明明插入的数据和锁住的数据没有毛线关系,为什么还会阻塞等锁最后超时呢?这就是 Next-Key Lock 实现的。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">画张图你就明白了:</span></p> <p style="text-align: center;line-height: 1.75em;margin-left: 8px;margin-right: 8px;margin-bottom: 5px;"><img class="rich_pages" data-copyright="0" data-ratio="0.45436507936507936" data-s="300,640" src="/upload/cc942d5cbb4b04b4dfa90302fe61184.png" data-type="png" data-w="1008" style=""></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">Gap 锁锁住的位置,不是记录本身,而是两条记录之间的间隔 Gap,其实就是防止幻读(同一事务下,连续执行两句同样的 SQL 得到不同的结果)。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">为了保证图上 3 个小箭头中间不会插入满足条件的新记录,所以用到了 Gap 锁防止幻读。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">简单的 Insert 会在 Insert 的行对应的索引记录上加一个 Record Lock 锁,并没有 Gap 锁,所以并不会阻塞其他 Session 在 Gap 间隙里插入记录。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">不过在 Insert 操作之前,还会加一种锁,官方文档称它为 Intention Gap Lock,也就是意向的 Gap 锁。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">这个意向 Gap 锁的作用就是预示着当多事务并发插入相同的 Gap 空隙时,只要插入的记录不是 Gap 间隙中的相同位置,则无需等待其他 Session 就可完成,这样就使得 Insert 操作无须加真正的 Gap Lock。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">Session A 插入数据:</span></p> <section class="output_wrapper" style="font-size: 16px;color: rgb(62, 62, 62);line-height: 1.6;letter-spacing: 0px;font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;"> <pre style="font-size: inherit;color: inherit;line-height: inherit;"><code class="hljs cs" style="margin-right: 2px;margin-left: 2px;line-height: 18px;font-size: 14px;letter-spacing: 0px;font-family: Consolas, Inconsolata, Courier, monospace;border-radius: 0px;color: rgb(169, 183, 198);padding: 0.5em;display: block !important;word-wrap: normal !important;word-break: normal !important;overflow: auto !important;background: rgb(40, 43, 46);">mysql&gt;&nbsp;begin;<br>Query&nbsp;OK,&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0</span>&nbsp;<span class="hljs-function" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">rows&nbsp;<span class="hljs-title" style="font-size: inherit;line-height: inherit;color: rgb(165, 218, 45);word-wrap: inherit !important;word-break: inherit !important;">affected</span>&nbsp;(<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0.00</span>&nbsp;sec</span>)<br><br>mysql&gt;&nbsp;insert&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;word-wrap: inherit !important;word-break: inherit !important;">into</span>&nbsp;m_test_db.M&nbsp;<span class="hljs-title" style="font-size: inherit;line-height: inherit;color: rgb(165, 218, 45);word-wrap: inherit !important;word-break: inherit !important;">values</span>&nbsp;(<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">10</span>,<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">25</span>,<span class="hljs-string" style="font-size: inherit;line-height: inherit;color: rgb(238, 220, 112);word-wrap: inherit !important;word-break: inherit !important;">'GrimMjx'</span></span>)</span>;<br>Query&nbsp;OK,&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">1</span>&nbsp;<span class="hljs-function" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">row&nbsp;<span class="hljs-title" style="font-size: inherit;line-height: inherit;color: rgb(165, 218, 45);word-wrap: inherit !important;word-break: inherit !important;">affected</span>&nbsp;(<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0.00</span>&nbsp;sec</span>)<br></span></code></pre> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">Session B 插入数据,完全没有问题,没有阻塞:</span></p> <section class="output_wrapper" style="font-size: 16px;color: rgb(62, 62, 62);line-height: 1.6;letter-spacing: 0px;font-family: 'Helvetica Neue', Helvetica, 'Hiragino Sans GB', 'Microsoft YaHei', Arial, sans-serif;"> <pre style="font-size: inherit;color: inherit;line-height: inherit;"><code class="hljs cs" style="margin-right: 2px;margin-left: 2px;line-height: 18px;font-size: 14px;letter-spacing: 0px;font-family: Consolas, Inconsolata, Courier, monospace;border-radius: 0px;color: rgb(169, 183, 198);padding: 0.5em;display: block !important;word-wrap: normal !important;word-break: normal !important;overflow: auto !important;background: rgb(40, 43, 46);">mysql&gt;&nbsp;begin;<br>Query&nbsp;OK,&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0</span>&nbsp;<span class="hljs-function" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">rows&nbsp;<span class="hljs-title" style="font-size: inherit;line-height: inherit;color: rgb(165, 218, 45);word-wrap: inherit !important;word-break: inherit !important;">affected</span>&nbsp;(<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0.00</span>&nbsp;sec</span>)<br><br>mysql&gt;&nbsp;insert&nbsp;<span class="hljs-keyword" style="font-size: inherit;line-height: inherit;word-wrap: inherit !important;word-break: inherit !important;">into</span>&nbsp;m_test_db.M&nbsp;<span class="hljs-title" style="font-size: inherit;line-height: inherit;color: rgb(165, 218, 45);word-wrap: inherit !important;word-break: inherit !important;">values</span>&nbsp;(<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">11</span>,<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">27</span>,<span class="hljs-string" style="font-size: inherit;line-height: inherit;color: rgb(238, 220, 112);word-wrap: inherit !important;word-break: inherit !important;">'Mjx'</span></span>)</span>;<br>Query&nbsp;OK,&nbsp;<span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">1</span>&nbsp;<span class="hljs-function" style="font-size: inherit;line-height: inherit;color: rgb(248, 35, 117);word-wrap: inherit !important;word-break: inherit !important;">row&nbsp;<span class="hljs-title" style="font-size: inherit;line-height: inherit;color: rgb(165, 218, 45);word-wrap: inherit !important;word-break: inherit !important;">affected</span>&nbsp;(<span class="hljs-params" style="font-size: inherit;line-height: inherit;color: rgb(255, 152, 35);word-wrap: inherit !important;word-break: inherit !important;"><span class="hljs-number" style="font-size: inherit;line-height: inherit;color: rgb(174, 135, 250);word-wrap: inherit !important;word-break: inherit !important;">0.00</span>&nbsp;sec</span>)<br></span></code></pre> </section> <p style="line-height: normal;"><br></p> <section style="box-sizing: border-box;font-size: 16px;"> <section style="box-sizing: border-box;" powered-by="xiumi.us"> <section style="margin-top: 10px;margin-bottom: 10px;box-sizing: border-box;"> <section style="width: 0.6em;display: inline-block;vertical-align: middle;box-sizing: border-box;"> <span style="width: 0.6em;height: 0.6em;display: block;opacity: 0.2;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span> <strong><span style="width: 0.6em;height: 0.6em;display: block;opacity: 0.6;margin-top: 2px;margin-bottom: 2px;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span><span style="width: 0.6em;height: 0.6em;display: block;opacity: 1;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span></strong> </section> <section style="display: inline-block;vertical-align: middle;font-size: 18px;padding-left: 5px;color: rgb(89, 89, 89);box-sizing: border-box;"> <p style="box-sizing: border-box;"><strong>死锁</strong></p> </section> </section> </section> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">了解了 InnoDB 是如何加锁的,现在可以去尝试分析死锁。死锁的本质就是两个事务相互等待对方释放持有的锁导致的,关键在于不同 Session 加锁的顺序不一致。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">不懂死锁概念模型的可以先看一幅图:</span></p> <p style="text-align: center;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><img class="rich_pages" data-copyright="0" data-ratio="0.5717092337917485" data-s="300,640" src="/upload/7364d603f1e56ca652586ca68927a479.png" data-type="png" data-w="509" style=""></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">左鸟线程获取了左肉的锁,想要获取右肉的锁,右鸟的线程获取了右肉的锁。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">右鸟想要获取左肉的锁。左鸟没有释放左肉的锁,右鸟也没有释放右肉的锁,那么这就是死锁。</span></p> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">接下来还用刚才的那张 M 表来分析一下数据库死锁,比较好理解:</span></p> <p style="text-align: center;margin-left: 8px;margin-right: 8px;line-height: 1.75em;margin-bottom: 5px;"><img class="rich_pages" data-copyright="0" data-ratio="0.4710947109471095" data-s="300,640" src="/upload/d37823c7f5d581708705fdd304696e73.png" data-type="png" data-w="813" style=""></p> <section style="box-sizing: border-box;font-size: 16px;"> <section style="box-sizing: border-box;" powered-by="xiumi.us"> <section style="margin-top: 10px;margin-bottom: 10px;box-sizing: border-box;"> <section style="width: 0.6em;display: inline-block;vertical-align: middle;box-sizing: border-box;"> <span style="width: 0.6em;height: 0.6em;display: block;opacity: 0.2;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span> <strong><span style="width: 0.6em;height: 0.6em;display: block;opacity: 0.6;margin-top: 2px;margin-bottom: 2px;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span><span style="width: 0.6em;height: 0.6em;display: block;opacity: 1;box-sizing: border-box;background-color: rgb(89, 89, 89);"></span></strong> </section> <section style="display: inline-block;vertical-align: middle;font-size: 18px;padding-left: 5px;color: rgb(89, 89, 89);box-sizing: border-box;"> <p style="box-sizing: border-box;"><strong>四种隔离级别</strong></p> </section> </section> </section> </section> <p style="line-height: normal;"><br></p> <p style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><span style="font-size: 15px;letter-spacing: 1px;color: rgb(71, 193, 168);">那么按照最严格到最松的顺序来讲一下四种隔离级别:</span></p> <p style="line-height: normal;"><br></p> <h4 style="text-align: justify;margin-left: 8px;margin-right: 8px;line-height: 1.75em;"><strong><span style="font-size: 15px;color: rgb(89, 89, 89);letter-spacing: 1px;">①Serializable(可序列化)</span></strong></h4> <p style="line-height: normal;"><br></p> <p style="text-align: justify;