├── .idea ├── .gitignore ├── JavaStarter.iml ├── inspectionProfiles │ └── Project_Default.xml ├── misc.xml ├── modules.xml └── vcs.xml ├── LICENSE ├── README.md └── images ├── GitHub.png └── qrcode_for_gh_544708444941_344.jpg /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /.idea/JavaStarter.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 36 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, 10 | and distribution as defined by Sections 1 through 9 of this document. 11 | 12 | "Licensor" shall mean the copyright owner or entity authorized by 13 | the copyright owner that is granting the License. 14 | 15 | "Legal Entity" shall mean the union of the acting entity and all 16 | other entities that control, are controlled by, or are under common 17 | control with that entity. For the purposes of this definition, 18 | "control" means (i) the power, direct or indirect, to cause the 19 | direction or management of such entity, whether by contract or 20 | otherwise, or (ii) ownership of fifty percent (50%) or more of the 21 | outstanding shares, or (iii) beneficial ownership of such entity. 22 | 23 | "You" (or "Your") shall mean an individual or Legal Entity 24 | exercising permissions granted by this License. 25 | 26 | "Source" form shall mean the preferred form for making modifications, 27 | including but not limited to software source code, documentation 28 | source, and configuration files. 29 | 30 | "Object" form shall mean any form resulting from mechanical 31 | transformation or translation of a Source form, including but 32 | not limited to compiled object code, generated documentation, 33 | and conversions to other media types. 34 | 35 | "Work" shall mean the work of authorship, whether in Source or 36 | Object form, made available under the License, as indicated by a 37 | copyright notice that is included in or attached to the work 38 | (an example is provided in the Appendix below). 39 | 40 | "Derivative Works" shall mean any work, whether in Source or Object 41 | form, that is based on (or derived from) the Work and for which the 42 | editorial revisions, annotations, elaborations, or other modifications 43 | represent, as a whole, an original work of authorship. For the purposes 44 | of this License, Derivative Works shall not include works that remain 45 | separable from, or merely link (or bind by name) to the interfaces of, 46 | the Work and Derivative Works thereof. 47 | 48 | "Contribution" shall mean any work of authorship, including 49 | the original version of the Work and any modifications or additions 50 | to that Work or Derivative Works thereof, that is intentionally 51 | submitted to Licensor for inclusion in the Work by the copyright owner 52 | or by an individual or Legal Entity authorized to submit on behalf of 53 | the copyright owner. For the purposes of this definition, "submitted" 54 | means any form of electronic, verbal, or written communication sent 55 | to the Licensor or its representatives, including but not limited to 56 | communication on electronic mailing lists, source code control systems, 57 | and issue tracking systems that are managed by, or on behalf of, the 58 | Licensor for the purpose of discussing and improving the Work, but 59 | excluding communication that is conspicuously marked or otherwise 60 | designated in writing by the copyright owner as "Not a Contribution." 61 | 62 | "Contributor" shall mean Licensor and any individual or Legal Entity 63 | on behalf of whom a Contribution has been received by Licensor and 64 | subsequently incorporated within the Work. 65 | 66 | 2. Grant of Copyright License. Subject to the terms and conditions of 67 | this License, each Contributor hereby grants to You a perpetual, 68 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 69 | copyright license to reproduce, prepare Derivative Works of, 70 | publicly display, publicly perform, sublicense, and distribute the 71 | Work and such Derivative Works in Source or Object form. 72 | 73 | 3. Grant of Patent License. Subject to the terms and conditions of 74 | this License, each Contributor hereby grants to You a perpetual, 75 | worldwide, non-exclusive, no-charge, royalty-free, irrevocable 76 | (except as stated in this section) patent license to make, have made, 77 | use, offer to sell, sell, import, and otherwise transfer the Work, 78 | where such license applies only to those patent claims licensable 79 | by such Contributor that are necessarily infringed by their 80 | Contribution(s) alone or by combination of their Contribution(s) 81 | with the Work to which such Contribution(s) was submitted. If You 82 | institute patent litigation against any entity (including a 83 | cross-claim or counterclaim in a lawsuit) alleging that the Work 84 | or a Contribution incorporated within the Work constitutes direct 85 | or contributory patent infringement, then any patent licenses 86 | granted to You under this License for that Work shall terminate 87 | as of the date such litigation is filed. 88 | 89 | 4. Redistribution. You may reproduce and distribute copies of the 90 | Work or Derivative Works thereof in any medium, with or without 91 | modifications, and in Source or Object form, provided that You 92 | meet the following conditions: 93 | 94 | (a) You must give any other recipients of the Work or 95 | Derivative Works a copy of this License; and 96 | 97 | (b) You must cause any modified files to carry prominent notices 98 | stating that You changed the files; and 99 | 100 | (c) You must retain, in the Source form of any Derivative Works 101 | that You distribute, all copyright, patent, trademark, and 102 | attribution notices from the Source form of the Work, 103 | excluding those notices that do not pertain to any part of 104 | the Derivative Works; and 105 | 106 | (d) If the Work includes a "NOTICE" text file as part of its 107 | distribution, then any Derivative Works that You distribute must 108 | include a readable copy of the attribution notices contained 109 | within such NOTICE file, excluding those notices that do not 110 | pertain to any part of the Derivative Works, in at least one 111 | of the following places: within a NOTICE text file distributed 112 | as part of the Derivative Works; within the Source form or 113 | documentation, if provided along with the Derivative Works; or, 114 | within a display generated by the Derivative Works, if and 115 | wherever such third-party notices normally appear. The contents 116 | of the NOTICE file are for informational purposes only and 117 | do not modify the License. You may add Your own attribution 118 | notices within Derivative Works that You distribute, alongside 119 | or as an addendum to the NOTICE text from the Work, provided 120 | that such additional attribution notices cannot be construed 121 | as modifying the License. 122 | 123 | You may add Your own copyright statement to Your modifications and 124 | may provide additional or different license terms and conditions 125 | for use, reproduction, or distribution of Your modifications, or 126 | for any such Derivative Works as a whole, provided Your use, 127 | reproduction, and distribution of the Work otherwise complies with 128 | the conditions stated in this License. 129 | 130 | 5. Submission of Contributions. Unless You explicitly state otherwise, 131 | any Contribution intentionally submitted for inclusion in the Work 132 | by You to the Licensor shall be under the terms and conditions of 133 | this License, without any additional terms or conditions. 134 | Notwithstanding the above, nothing herein shall supersede or modify 135 | the terms of any separate license agreement you may have executed 136 | with Licensor regarding such Contributions. 137 | 138 | 6. Trademarks. This License does not grant permission to use the trade 139 | names, trademarks, service marks, or product names of the Licensor, 140 | except as required for reasonable and customary use in describing the 141 | origin of the Work and reproducing the content of the NOTICE file. 142 | 143 | 7. Disclaimer of Warranty. Unless required by applicable law or 144 | agreed to in writing, Licensor provides the Work (and each 145 | Contributor provides its Contributions) on an "AS IS" BASIS, 146 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or 147 | implied, including, without limitation, any warranties or conditions 148 | of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A 149 | PARTICULAR PURPOSE. You are solely responsible for determining the 150 | appropriateness of using or redistributing the Work and assume any 151 | risks associated with Your exercise of permissions under this License. 152 | 153 | 8. Limitation of Liability. In no event and under no legal theory, 154 | whether in tort (including negligence), contract, or otherwise, 155 | unless required by applicable law (such as deliberate and grossly 156 | negligent acts) or agreed to in writing, shall any Contributor be 157 | liable to You for damages, including any direct, indirect, special, 158 | incidental, or consequential damages of any character arising as a 159 | result of this License or out of the use or inability to use the 160 | Work (including but not limited to damages for loss of goodwill, 161 | work stoppage, computer failure or malfunction, or any and all 162 | other commercial damages or losses), even if such Contributor 163 | has been advised of the possibility of such damages. 164 | 165 | 9. Accepting Warranty or Additional Liability. While redistributing 166 | the Work or Derivative Works thereof, You may choose to offer, 167 | and charge a fee for, acceptance of support, warranty, indemnity, 168 | or other liability obligations and/or rights consistent with this 169 | License. However, in accepting such obligations, You may act only 170 | on Your own behalf and on Your sole responsibility, not on behalf 171 | of any other Contributor, and only if You agree to indemnify, 172 | defend, and hold each Contributor harmless for any liability 173 | incurred by, or claims asserted against, such Contributor by reason 174 | of your accepting any such warranty or additional liability. 175 | 176 | END OF TERMS AND CONDITIONS 177 | 178 | APPENDIX: How to apply the Apache License to your work. 179 | 180 | To apply the Apache License to your work, attach the following 181 | boilerplate notice, with the fields enclosed by brackets "[]" 182 | replaced with your own identifying information. (Don't include 183 | the brackets!) The text should be enclosed in the appropriate 184 | comment syntax for the file format. We also recommend that a 185 | file or class name and description of purpose be included on the 186 | same "printed page" as the copyright notice for easier 187 | identification within third-party archives. 188 | 189 | Copyright [yyyy] [name of copyright owner] 190 | 191 | Licensed under the Apache License, Version 2.0 (the "License"); 192 | you may not use this file except in compliance with the License. 193 | You may obtain a copy of the License at 194 | 195 | http://www.apache.org/licenses/LICENSE-2.0 196 | 197 | Unless required by applicable law or agreed to in writing, software 198 | distributed under the License is distributed on an "AS IS" BASIS, 199 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 200 | See the License for the specific language governing permissions and 201 | limitations under the License. 202 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 重要通知 2 | 目前所有的文章更新都放到了我的个人网站 [codeease](https://codeease.top),github端暂停更新。 3 | 4 | # JavaStarter 5 | 最开始写博客的目的就是为了学习和记录,后来发现虽然写了这么多,但是没有系统性地进行整理,因此我建立了JavaStarter系列。希望在学习或面试中都对大家有所帮助。 6 | 7 | 后续所有文章首发**微信公众号《Java鱼仔》**,欢迎搜索关注或者扫码关注,有任何问题或需要沟通的都可以在这里找到我。 8 | 9 |

10 | 11 |

12 | 13 |

14 | 掘金 15 | CSDN 16 | 开源中国 17 | 18 |

19 | 20 | # 目录 21 | 22 | **注 : 文章持续更新中,没有链接的请等待** 23 | - 造轮子系列 24 | - [闲着无聊造个轮子,开源一个可快速接入的分布式SSO系统](https://mp.weixin.qq.com/s/EDaED7XIzdB01xJeTsbwKQ) 25 | 26 | - 计算机核心基础 27 | 28 | - 计算机操作系统 29 | - [Java程序员需要知道的操作系统知识汇总(持续更新)](https://mp.weixin.qq.com/s/0XyKUCugehepzl7IRg0RVA) 30 | 31 | - 计算机网络 32 | - [作为一个程序员需要了解多少网络方面的基础?网络基础总结(不断更新)](https://mp.weixin.qq.com/s/C7CXHAx_6qQNEDKsqY-fxw) 33 | 34 | - 计算机组成原理 35 | 36 | - 数据结构 37 | 38 | - Java核心基础 39 | 40 | - 基础篇 41 | - [Java常用关键字:this、super、final、static、访问修饰符](https://mp.weixin.qq.com/s/n2LR0zXzHe7XRkMRT38iRQ) 42 | - [写了那么久的String字符串,你可能根本不懂它!](https://mp.weixin.qq.com/s/XKjAN0xGBUY4UVO3-YCi1g) 43 | - [JavaIO的整体结构以及File类的使用](https://blog.csdn.net/qq_41973594/article/details/104849452) 44 | - [快速学懂字节流与字符流](https://blog.csdn.net/qq_41973594/article/details/104867904) 45 | - [详解Java中的BIO、NIO、AIO](https://mp.weixin.qq.com/s/oRKjxtO_hf7OVSJ67Gt5sQ) 46 | - [java反射机制详解](https://mp.weixin.qq.com/s/ZBOmJ4gwpsJyQ1HF63K6Ug) 47 | - [java代理机制详解(静态代理、动态代理:JDK、CGlib)](https://blog.csdn.net/qq_41973594/article/details/104118797) 48 | - [一篇文章带你了解cloneable接口、浅拷贝、深拷贝](https://mp.weixin.qq.com/s/ceEjFw15otMGfoSKJpf0zQ) 49 | - [谈一谈session和cookie的区别,以及session的实现机制](https://mp.weixin.qq.com/s/PYaCqJ_Y-9ODuH2_wTr9jg) 50 | - [什么是接口的幂等性,如何实现接口幂等性?一文搞定](https://mp.weixin.qq.com/s/DQ_5uydWw9MelzgeFS45Wg) 51 | - [Java16都快上线了,你该不会连Java8的特性都不会用吧?](https://mp.weixin.qq.com/s/V_dYpY6KWpq1qyVV2rwKTA) 52 | - [Java中的拦截器和过滤器有什么区别](https://mp.weixin.qq.com/s/cpMe-Qcug82qrXBSjhN5Lg) 53 | - [你能保证你的代码没有异常吗?](https://mp.weixin.qq.com/s/SD0KAHkR-YBDBa9cx7EkjA) 54 | - [时间类有多复杂,JDK竟设计了三版](https://mp.weixin.qq.com/s/Fy9EsF3mV0OM8AbofaQOtA) 55 | 56 | - 集合类 57 | - [java集合掌握多少才算合格](https://mp.weixin.qq.com/s/pG3PwS4IKqUIqJGYSmxtzg) 58 | - [ArrayList、Vector、LinkedList的底层源码分析和对比](https://mp.weixin.qq.com/s/pt-dH2lSQbv3MjgZeeJryA) 59 | - [Set接口及其实现类HashSet、TreeSet的底层结构与区别](https://mp.weixin.qq.com/s/5bFCcrPGcjUssb9RbtEkuw) 60 | - [HashMap、HashTable、TreeMap的底层源码分析和对比](https://mp.weixin.qq.com/s/G3cfPJoSo3ctdZu3Qv5gwg) 61 | - [四千字从源码分析ConcurrentHashMap的底层原理(JDK1.8)](https://mp.weixin.qq.com/s/7qGxMr3ZP_xt97-V5pm8Ow) 62 | 63 | - JVM虚拟机 64 | - [JVM的内存分代,这篇文章帮你理一理](https://mp.weixin.qq.com/s/y_Img5glkZGzrLXkJBrAfw) 65 | - [用几张图深度剖析Java运行时数据区](https://mp.weixin.qq.com/s/t6xvP28HP2tQN-t9T72FbQ) 66 | - [JVM垃圾回收机制是怎样的,何时触发YoungGC或FullGC操作,一文搞定](https://mp.weixin.qq.com/s/zelYGONiIWGnUa1NgtQOMQ) 67 | - [关于垃圾收集器你了解多少?一文总结七大垃圾收集器](https://mp.weixin.qq.com/s/Qj9BJvlp_X2qpohX0w-ILA) 68 | - [深入浅出CMS垃圾收集器](https://mp.weixin.qq.com/s/FMiKiieWA00HlSlWfpZSMA) 69 | - [图解类加载器和双亲委派机制,一看就懂](https://mp.weixin.qq.com/s/U41G0R-SNqNKaMEksuj78A) 70 | - [关于JVM调优,我理了一些工具和思路出来](https://mp.weixin.qq.com/s/XzHJiQ-zmY3uyjYZiFcsDw) 71 | - [两张图让你快速读懂JVM字节码指令](https://mp.weixin.qq.com/s/CwPE03EPY_eQfffbjXSpUg) 72 | - [从JVM角度思考--如何预估线上环境机器资源大小](https://mp.weixin.qq.com/s/v2jZY2VBFxhXSqNTY40osg) 73 | 74 | 75 | - Java并发 76 | - [产品经理问我:手动创建线程不香吗,为什么非要用线程池呢?](https://mp.weixin.qq.com/s/51x1QlbDAiRkCUffpIYcNQ) 77 | - [面试官:我问的是Java内存模型,你回答堆栈方法区干嘛?](https://mp.weixin.qq.com/s/4NHC9Fmk7eiiI8UHrnYNOA) 78 | - [指令重排序、内存屏障很难?看完这篇你就懂了!](https://blog.csdn.net/qq_41973594/article/details/110452849) 79 | - [Volatile只会用不知道原理?一篇文章带你深究volatile](https://mp.weixin.qq.com/s/IOD6l9s0JN9VJXNlm07yJQ) 80 | - [有关synchronized锁的知识点,我用一篇文章总结了](https://mp.weixin.qq.com/s/hy42BV48RjOzkkXeDL-wZA) 81 | - [面试被问AQS、ReentrantLock答不出来?这些知识点让我和面试官聊了半小时!](https://mp.weixin.qq.com/s/9BgfaYAdA-XrnzBSeDj5BQ) 82 | - [大厂面试题:你知道JUC中的Semaphore、CyclicBarrier、CountDownLatch吗](https://mp.weixin.qq.com/s/kQLUuesGE9xshMfULXeYUA) 83 | - [关于ThreadLocal的九个知识点,看完别再说不懂了!](https://mp.weixin.qq.com/s/PPjLR_-mIwMKKU48V7i04w) 84 | 85 | 86 | - 框架的艺术 87 | 88 | - Spring 89 | - [Spring的艺术(一)重新带你走进Spring](https://blog.csdn.net/qq_41973594/article/details/110846401) 90 | - [Spring的艺术(二):控制反转(IOC)和依赖注入(DI)的完美实现](https://blog.csdn.net/qq_41973594/article/details/110907361) 91 | - [Spring的艺术(三):关于Spring中的Bean,一文搞定](https://blog.csdn.net/qq_41973594/article/details/111020865) 92 | - [Spring的艺术(四):Spring5竟然可以彻底抛弃xml配置](https://blog.csdn.net/qq_41973594/article/details/111087086) 93 | - [Spring的艺术(五):通俗易懂的AOP切面详解](https://blog.csdn.net/qq_41973594/article/details/111145727) 94 | - [Spring的艺术(六):一文搞定Spring整合Mybatis](https://blog.csdn.net/qq_41973594/article/details/111187366) 95 | - [事务Transactional注解的参数与失效场景分析](https://mp.weixin.qq.com/s/NscGYhOqofI5wFSuk5HRgA) 96 | - [写了两年代码之后再来看看Spring中的Bean](https://mp.weixin.qq.com/s/0IfcSwtObsY44VnYhbjKEg) 97 | - [这次终于把Spring的监听器讲明白了](https://mp.weixin.qq.com/s/hlvLmQAEyMM64ub1wTHXcQ) 98 | - [你真的了解Maven吗?](https://mp.weixin.qq.com/s/sWY7nYgixZE8usojNkJnfw) 99 | 100 | - Mybatis 101 | - [Mybatis的原理介绍及超详细使用](https://blog.csdn.net/qq_41973594/article/details/109557341) 102 | - [Mybatis增删改查,这一篇足以](https://blog.csdn.net/qq_41973594/article/details/109589066) 103 | - [Mybatis配置详细解析](https://blog.csdn.net/qq_41973594/article/details/109655779) 104 | - [MyBatis实现复杂环境的Sql查询](https://blog.csdn.net/qq_41973594/article/details/109683869) 105 | - [Mybatis日志原来是这样使用的](https://blog.csdn.net/qq_41973594/article/details/109711808) 106 | - [Mybatis动态Sql详解](https://blog.csdn.net/qq_41973594/article/details/109752413) 107 | - [Mybatis缓存详解](https://javayz.blog.csdn.net/article/details/109830210) 108 | - [想在一个项目中实现多数据源切换?几行代码就搞定了](https://mp.weixin.qq.com/s/UcaxRShgiEcBmlekxX_Xjg) 109 | - [用了MybatisPlus后,我很久没有手写sql了](https://mp.weixin.qq.com/s/Uyl3SG6l8oI4O-lrRfGnUQ) 110 | 111 | - SpringMVC 112 | 113 | - SpringBoot 114 | - [如何用SpringBoot(2.3.3版本)快速搭建一个项目?文末有小彩蛋](https://mp.weixin.qq.com/s/dEpH1QYIpp46eIbZ2WKZPw) 115 | - [一步步带你看SpringBoot(2.3.3版本)自动装配原理](https://mp.weixin.qq.com/s/FUAs_tXX7jjyAiCnEk2qSg) 116 | - [SpringBoot配置文件及自动配置原理详解,这应该是SpringBoot最大的优势了吧](https://mp.weixin.qq.com/s/XylqpV7ui_wNC46UYkDIBA) 117 | - [SpringBoot整合jdbc、durid、mybatis详解,数据库的连接就是这么简单](https://mp.weixin.qq.com/s/FCYkNcba16POY_GgOMeZ0g) 118 | - [SpringBoot整合SpringSecurity详解,认证授权从未如此简单](https://mp.weixin.qq.com/s/nh3xVtl-5qmPS3Acmqgopw) 119 | - [SpringBoot整合Shiro详解,还在自己写登陆注册早落伍了](https://mp.weixin.qq.com/s/xsgZZYFDEnI51m2Wyh4dxg) 120 | - [SpringBoot如何实现异步、定时任务?](https://mp.weixin.qq.com/s/xqb32G64rwfdfOUla6ZRgg) 121 | - [如何在SpringBoot启动时执行初始化操作,两个简单接口就可以实现](https://mp.weixin.qq.com/s/RjD2tg0ZSPcFNbikP0vc1g) 122 | - [如何使用SpringBoot写一个属于自己的Starter](https://mp.weixin.qq.com/s/MbMUzdqS3E9tNN1JnkGk8w) 123 | 124 | - Mq 125 | - [RabbitMQ的了解安装和使用](https://blog.csdn.net/qq_41973594/article/details/104363409) 126 | - [简单队列详解](https://blog.csdn.net/qq_41973594/article/details/104381204) 127 | - [工作队列详解](https://blog.csdn.net/qq_41973594/article/details/104434915) 128 | - [发布-订阅模型详解](https://blog.csdn.net/qq_41973594/article/details/104451416) 129 | - [routing路由模式和Topic主题模式](https://blog.csdn.net/qq_41973594/article/details/104486338) 130 | - [RabbitMQ消息确认机制](https://blog.csdn.net/qq_41973594/article/details/104562486) 131 | 132 | - Zookeeper 133 | - [Zookeeper实现分布式锁的原理是什么?](https://mp.weixin.qq.com/s/dLf288J_sG72EKuo_B4FeA) 134 | 135 | - Netty 136 | - [网络开发的最强大框架:Netty快速入门](https://mp.weixin.qq.com/s/anVagtfsMtn_QwQQyJtvmQ) 137 | - [粘包和半包有了解过吗?netty是如何解决这个问题的](https://mp.weixin.qq.com/s/0qfTDjbdsGgsbuFxQjjKQQ) 138 | 139 | 140 | - 这就是数据库 141 | 142 | - Mysql 143 | - [一文汇总数据库基础知识点!](https://mp.weixin.qq.com/s/Sq522MHEBc5WgR3ngywJ6Q) 144 | - [Mysql的索引调优详解:如何去创建索引以及避免索引失效](https://blog.csdn.net/qq_41973594/article/details/105045799) 145 | - [都2020年了,你还不知道count(1)和count(*)谁效率更高吗?](https://blog.csdn.net/qq_41973594/article/details/106796388) 146 | - [简单聊聊MySQL中的六种日志](https://mp.weixin.qq.com/s/RiDfbpC2igzN4sbQ7C0szw) 147 | - [图解Mysql索引的数据结构!看不懂你来找我](https://mp.weixin.qq.com/s/AruIsVouwMJo5zNrxHAxYA) 148 | - [白话Mysql的锁和事务隔离级别!死锁、间隙锁你都知道吗?](https://mp.weixin.qq.com/s/lDeEDkXZ85wNpg5Qi9ArnQ) 149 | - [数据库分库分表扫盲,不会用也得知道概念](https://mp.weixin.qq.com/s/9TGypneXAYbi0LwSOfQkpw) 150 | 151 | - Redis 152 | - [redis入门到精通系列(一):入门redis看这一篇就够了](https://mp.weixin.qq.com/s/T4nUo0PU9cN7qpWW5jw3UA) 153 | - [redis入门到精通系列(二):redis操作的两个实践案例](https://mp.weixin.qq.com/s/4c4O1bFbh28aRt5eltoduA) 154 | - [redis入门到精通系列(三):key的通用操作和redis内部db的通用操作](https://mp.weixin.qq.com/s/FFCKulAp1DMB40rzEWeK4A) 155 | - [redis入门到精通系列(四):Jedis--使用java操作redis详解](https://mp.weixin.qq.com/s/u2STtic9_Aha43Z_EQga1g) 156 | - [redis入门到精通系列(五):redis的持久化看这一篇就够了](https://mp.weixin.qq.com/s/COoiYj24Gg7WqVHkVOwcsQ) 157 | - [redis入门到精通系列(六):redis的事务详解](https://mp.weixin.qq.com/s/EBB1-eirR1VRA1mAJPO6BA) 158 | - [redis入门到精通系列(七):redis高级数据类型详解(BitMaps,HyperLogLog,GEO)](https://mp.weixin.qq.com/s/nFGFaBGMpbve6d7eeYv1jQ) 159 | - [redis入门到精通系列(八):redis的高可用--主从复制详解](https://mp.weixin.qq.com/s/7wcs22Fo0CdtDq1GapIHcA) 160 | - [redis入门到精通系列(九):redis哨兵模式详解](https://mp.weixin.qq.com/s/ShzzyI_TaAqD5cBN_LVnGw) 161 | - [redis入门到精通系列(十):springboot快速集成redis](https://mp.weixin.qq.com/s/2e4in0zi8ye6HuChzu4HgQ) 162 | - [redis入门到精通系列(十一):redis的缓存穿透、缓存击穿以及缓存雪崩](https://mp.weixin.qq.com/s/E48J2R9roj8gV5soOC4b4A) 163 | - [redis入门到精通系列(十二):看完这一篇文章别再说不懂布隆过滤器](https://mp.weixin.qq.com/s/Z0Td6XgQ36imsQaIN-YzmA) 164 | 165 | - MongoDB 166 | - [MongoDB快速上手,聊聊这款火了一阵又销声匿迹的非关系型数据库](https://mp.weixin.qq.com/s/rgkm6HxhZ3ho7Y9PUpAAnA) 167 | 168 | - 分布式与微服务 169 | - SpringCloud 170 | - [使用idea搭建第一个微服务项目(附源码)](https://blog.csdn.net/qq_41973594/article/details/103377731) 171 | - [Eureka基础与进阶实战](https://blog.csdn.net/qq_41973594/article/details/103432357) 172 | - [ribbon的服务调用和负载均衡](https://blog.csdn.net/qq_41973594/article/details/103481333) 173 | - [Feign的入门和高级使用](https://blog.csdn.net/qq_41973594/article/details/103520168) 174 | - [Hystrix的入门和高级使用](https://blog.csdn.net/qq_41973594/article/details/103559788) 175 | - [SpringCloud之微服务网关的入门与进阶(请求过滤、网关限流)](https://blog.csdn.net/qq_41973594/article/details/103609543) 176 | 177 | - SpringCloudAlibaba 178 | - [服务发现、配置中心,Nacos帮我们都搞定了](https://mp.weixin.qq.com/s/XZn9MFiyWWbe5e8Nj6D8Rg) 179 | - [Sentinel快速入门:这可能是目前最好的分布式系统限流降级框架](https://mp.weixin.qq.com/s/G02A6IX-uaRQP_d9ki1s1w) 180 | - [基于SpringCloudGateway实现微服务网关](https://mp.weixin.qq.com/s/zlv6uyrghHdYk-6FrJiF5w) 181 | 182 | - Dubbo 183 | - [Dubbo两小时快速上手教程(直接代码、Spring、SpringBoot)](https://mp.weixin.qq.com/s/Rmm5Iqemi4cZFWTE3yDqOQ) 184 | 185 | - 认证授权 186 | - [分布式集群环境下,如何实现每个服务的登陆认证?](https://mp.weixin.qq.com/s/Q2rTXL79bwJ0RFMcQOw3Cg) 187 | - [你知道JWT是什么吗?它和Session的区别又在哪里?](https://mp.weixin.qq.com/s/-esLgvXzFgvAAJ6zGKLVgQ) 188 | - [SpringBoot+SpringSecurity实现基于真实数据的授权认证](https://mp.weixin.qq.com/s/ipxXJy6jaFbUBg9VWBp57g) 189 | - [Oauth2是个什么东西?](https://mp.weixin.qq.com/s/TGJc_C2v6VkW8m-RgDlLaw) 190 | 191 | - 任务调度 192 | - [为什么要引入分布式任务调度系统?](https://mp.weixin.qq.com/s/yRi1YnA1rEhwgTfh4eNceg) 193 | - [为什么说datax是目前最好的异构数据源数据交换工具](https://mp.weixin.qq.com/s/2Uzskg1Qh43QDT9YklfAUw) 194 | 195 | - 大数据技术 196 | 197 | - ElasticSearch 198 | - [ElasticSearch究竟是个什么东西](https://mp.weixin.qq.com/s/7Z7zD9VWXlGc7-yt7qNzfw) 199 | - [通过官方文档高效学习ElasticSearch的JavaAPI实现!](https://mp.weixin.qq.com/s/rph0YIjgotM8-_9hf8rgIQ) 200 | - [如何在自己的项目中引入ElasticSearch搜索引擎?](https://mp.weixin.qq.com/s/KrcKgU4CGln3YKZKWaZ4Dg) 201 | - [ElasticSearch聚合查询Restful语法和JavaApi详解(基于ES7.6)](https://mp.weixin.qq.com/s/-1NcenPNrwd0C0UJrUwlhQ) 202 | - [深入了解ElasticSearch的Nested数据类型](https://mp.weixin.qq.com/s/11YdA8cGC_YdXOKfyydFLA) 203 | 204 | - Spark 205 | - [十亿条数据需要每天计算怎么办?Spark快速入门](https://mp.weixin.qq.com/s/dwRqUU8YYD9PgvZkFCJDsA) 206 | - [学会RDD就学会了Spark,Spark数据结构RDD快速入门](https://mp.weixin.qq.com/s/YPLkJA3Afvfq7VW_aR0B4Q) 207 | - [像写SQL一样去处理内存中的数据,SparkSQL入门教程](https://mp.weixin.qq.com/s/illVY_7jE4K06EWVGzAoHA) 208 | - [Spark算子实战Java版,学到了](https://mp.weixin.qq.com/s/Wl-_k9dEZjCk1qhY5NLGFA) 209 | 210 | - Kafka 211 | - [大数据场景下的消息队列:Kafka3.0快速入门](https://mp.weixin.qq.com/s/Bq26VZrwz8Wh7WTOi0Gy9A) 212 | - [Kafka生产者是如何发送消息的?](https://mp.weixin.qq.com/s/8u_6M2NF9GEsg98jARVLcA) 213 | 214 | - 设计模式 215 | - [适配器模式详解与应用](https://mp.weixin.qq.com/s/os9xMef6-7IHkZgXjMw_1w) 216 | - [迭代器模式:理解与实践](https://mp.weixin.qq.com/s/W7udykGx-w2Sz4BD0zqc5w) 217 | - [模板方法设计模式理论与应用](https://mp.weixin.qq.com/s/g9BnTLmGmSKxbqdo8Zj2eg) 218 | - [快速理解工厂方法模式,及其在源码中的应用](https://mp.weixin.qq.com/s/WkQw0CyC8v3OR2ruliTxBA) 219 | - [详解单例模式及其在Sping中的最优实践](https://mp.weixin.qq.com/s/rNd3DeCRkTL9GLXsgbU6Bg) 220 | - [快速理解原型模式,及其在源码中的应用](https://mp.weixin.qq.com/s/kz_R42lEUkLRNLt1IhJqEA) 221 | - [快速理解建造者模式,及其在JDK源码中的应用](https://mp.weixin.qq.com/s/HcrJMZhUObx2nTecQUqXOw) 222 | - [最实用的设计模式:策略模式的快速理解](https://mp.weixin.qq.com/s/NGT8Z8BO53AjGLs5KWX_mw) 223 | - [快速理解装饰者模式,及其在JDK源码中的应用](https://mp.weixin.qq.com/s/hq6Qj8i5IVjF0W_eDl2eCA) 224 | - [快速理解观察者模式,原来它还有这么多其他名字](https://mp.weixin.qq.com/s/rM3ygS4gP_-saZdTfAfMCQ) 225 | 226 | - 每个程序员都要会Linux 227 | - [作为一个后端开发,你需要了解多少Nginx的知识?](https://mp.weixin.qq.com/s/YyZjC50zASkpbkq_28NnFA) 228 | - [取经阿里十年技术大佬,得到Java线上问题排查攻略!](https://mp.weixin.qq.com/s/0lvgLX5KIoSYu5yxgKfK8Q) 229 | 230 | 231 | - 实战项目 232 | 233 | - 基于SpringBoot和BootStrap的论坛网址 234 | - [基于SpringBoot和BootStrap的全栈论坛网站](https://blog.csdn.net/qq_41973594/article/details/103288287) 235 | - [(一):准备阶段](https://blog.csdn.net/qq_41973594/article/details/102967807) 236 | - [(二):后端人员如何快速使用BootStrap](https://blog.csdn.net/qq_41973594/article/details/102984261) 237 | - [(三):登陆注册以及cookies的功能完成](https://blog.csdn.net/qq_41973594/article/details/103004974) 238 | - [(四):完成问题发布功能](https://blog.csdn.net/qq_41973594/article/details/103043298) 239 | - [(五):完成首页展示以及分页功能](https://blog.csdn.net/qq_41973594/article/details/103079089) 240 | - [(六):完成个人中心、问题详情和问题编辑](https://blog.csdn.net/qq_41973594/article/details/103133266) 241 | - [(七):完成回复和二级回复功能](https://blog.csdn.net/qq_41973594/article/details/103232086) 242 | - [(八):完成回复通知的功能](https://blog.csdn.net/qq_41973594/article/details/103287161) 243 | 244 | - 搭建基于SpringBoot的秒杀后台项目 245 | - [(一):项目准备](https://blog.csdn.net/qq_41973594/article/details/107774491) 246 | - [(二):快速搭建一个SpringBoot项目](https://blog.csdn.net/qq_41973594/article/details/107799310) 247 | - [(三):首页、详情页编写](https://blog.csdn.net/qq_41973594/article/details/107824871) 248 | - [(四):雪花算法生成订单号以及抢购功能实现](https://blog.csdn.net/qq_41973594/article/details/107876913) 249 | - [(五):基于Shiro的人员登陆认证](https://blog.csdn.net/qq_41973594/article/details/107895987) 250 | - [(六):使用RabbitMQ让订单指定时间后失效](https://blog.csdn.net/qq_41973594/article/details/107946207) 251 | - [(七):高并发导致超卖问题分析处理](https://blog.csdn.net/qq_41973594/article/details/108030153) 252 | - [(八):通过分布式锁解决多线程导致的问题](https://blog.csdn.net/qq_41973594/article/details/108030244) 253 | 254 | - 基于SpingBoot开发的小功能 255 | - [基于SpringBoot和Redis实现短信验证码功能](https://mp.weixin.qq.com/s/_-tRSbB6leHUOfaObseZHg) 256 | - [基于SpringBoot实现文件的上传下载](https://mp.weixin.qq.com/s/TLGkvRxs4JWB9XXDJ4xd_A) 257 | - [一步步教你如何在SpringBoot项目中引入支付功能](https://mp.weixin.qq.com/s/b-4dSdqcM1rTKgkjpb1Ceg) 258 | - [基于SpringBoot实现文件的上传下载](https://mp.weixin.qq.com/s/NMtatCn6kSpQ-fRviQmQ6A) 259 | 260 | 261 | 262 | - 开发经验大全 263 | - [一个包含多种Get请求和Post请求的工具类](https://blog.csdn.net/qq_41973594?spm=1000.2115.3001.5113) 264 | - [如何用Java写一个规范的http接口?](https://mp.weixin.qq.com/s/hChsFGHG8hhXs5Ott7zfbg) 265 | - [一个成熟的Java项目如何优雅地处理异常](https://mp.weixin.qq.com/s/QzmBosy4LpdHWRqjwq7JIA) 266 | - [项目经理最近感觉系统慢了,想知道整个系统每个方法的执行时间](https://mp.weixin.qq.com/s/N-_bYqcoD3ymOFNAeUWBIA) 267 | - [财务说账单上少了一分钱,老板看到代码气疯了](https://mp.weixin.qq.com/s/t-GdZEmAJQOmGh7Ppn_Rjg) 268 | - [浅析五种最常用的Java加密算法,以后可以直接拿来用了](https://mp.weixin.qq.com/s/gNmRKqcgEZokUmDjRxPj8Q) 269 | - [你真的会用idea进行debug吗?idea实用debug教程](https://mp.weixin.qq.com/s/eta532g_hJ0gubtPHBbmpw) 270 | - [还不知道项目中怎么写日志?slf4j+log4j帮你搞定!](https://mp.weixin.qq.com/s/USB6b-_nQdIZGaGkvnbYVg) 271 | - [如何在工作中快速上手Git](https://mp.weixin.qq.com/s/Uz947DDfsCvao_0I8vJJQw) 272 | - [号称"最强API文档工具"的Swagger到底厉害在哪](https://mp.weixin.qq.com/s/9upBrkQlu0Gqe1-aLrclrQ) 273 | - [分享工作一年后收藏的超好用Idea插件,工作效率直接翻倍](https://mp.weixin.qq.com/s/BatK103AfP0Jx0zIT9lSAg) 274 | - [怎样才能写出规范的好代码?](https://mp.weixin.qq.com/s/T8OXEaYjzw0ItS5mI7bDDw) 275 | - [如何上传自己的jar包到maven中央仓库(2021最新版)](https://mp.weixin.qq.com/s/s-NfvoVW47_53RqshexfSg) 276 | - [使用Optional更优雅地处理非空判断](https://mp.weixin.qq.com/s/w19rwScpBxKQLABAa3QjUw) 277 | - [查准考证网站卡了整整一个小时进不去,被抢票支配的恐惧又来了](https://mp.weixin.qq.com/s/GyQaw5nsHsY7t3WFCEPAzQ) 278 | - [线上报了内存溢出异常,又不完全是内存溢出](https://mp.weixin.qq.com/s/OLbZAX6tqlYJDP_2T4DqdQ) 279 | 280 | 281 | 282 | - 我的程序人生 283 | - [作为一名普通本科计算机专业学生,我大学四年到底走了多少弯路](https://blog.csdn.net/qq_41973594/article/details/103232236) 284 | - [应届毕业生因为疫情休息在家,可以通过哪些途径提高自己?](https://blog.csdn.net/qq_41973594/article/details/104591075) 285 | - [JAVA实习生刚进公司主要做些什么?以及进入职场后我的心理变化](https://blog.csdn.net/qq_41973594/article/details/105565105) 286 | - [工作中只需要增删改查的程序员,别安于现状](https://blog.csdn.net/qq_41973594/article/details/109541193) 287 | - [坚持写技术博客,我得到了什么?](https://blog.csdn.net/qq_41973594/article/details/110147766) 288 | - [从考研失败到最具成长力员工,这个2020就像过山车一样](https://mp.weixin.qq.com/s/MdOxoVwmy5V_10OeyuXvAQ) 289 | - [今天不聊技术,谈谈我眼中的程序员到底是个怎样的职业](https://mp.weixin.qq.com/s/RubqJyHWB6hKMY61vV298w) 290 | - [平稳运行半年的系统宕机了,记录一次排错调优的全过程!](https://mp.weixin.qq.com/s/6hXUliGnU7kEMcIl37LmpQ) 291 | - [裸辞后,我更加自律了](https://mp.weixin.qq.com/s/WKRq_Rhm5c-kDNyb5Tkriw) 292 | - [谈谈我裸辞以及一周内找到工作的经历](https://mp.weixin.qq.com/s/5cc2SDwPBSLkLRkMaC6lJA) 293 | - [软件行业和互联网行业究竟有什么区别?又该如何去选择?](https://mp.weixin.qq.com/s/Qa4pyPDiaki6AeiAuwUr8Q) 294 | - [1到3年的Java开发工程师应该如何准备面试](https://mp.weixin.qq.com/s/508V1wFU1X8khI7dxStGXA) 295 | - [互联网公司的完整开发流程是怎样的?](https://mp.weixin.qq.com/s/rS3Bz8moinOAKo_5ANrL6g) 296 | - [【2021总结】工作时间从865到995,这一年的变化真大](https://mp.weixin.qq.com/s/kldXMRl6fu996NA-mdRjfA) 297 | 298 | # 祝福 299 | 300 | 我一直相信一句话,**你会累是因为你在走上坡路**,希望我的这个系列文章能够帮助到点开的你 301 | -------------------------------------------------------------------------------- /images/GitHub.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLiy/JavaStarter/785b82883dc77fc05740c112ac02bcb3dbb51915/images/GitHub.png -------------------------------------------------------------------------------- /images/qrcode_for_gh_544708444941_344.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OliverLiy/JavaStarter/785b82883dc77fc05740c112ac02bcb3dbb51915/images/qrcode_for_gh_544708444941_344.jpg --------------------------------------------------------------------------------