摘要: spring源码阅读(一)-附录例子 spring源码阅读(二)-IOC之ClassPathXmlApplicationContext Spring源码阅读(八)-IOC之AnnotationConfigApplicationContext spring源码阅读(三)-Spring AOP用法和理解 阅读全文
posted @ 2022-02-10 10:39 意犹未尽 阅读(110) 评论(0) 推荐(0) 编辑
摘要: mybatis使用-helloword(一) mybatis使用-高级用法(二) mybatis源码阅读-SqlSessionFactory和SqlSession(三) mybatis源码阅读-Transaction和TransactionFactory(四) mybatis源码阅读-执行器Exec 阅读全文
posted @ 2021-12-04 14:39 意犹未尽 阅读(73) 评论(0) 推荐(0) 编辑
摘要: SpringMVC源码阅读-Root WebApplicationContext初始化(一) SpringMVC源码阅读-Servlet WebApplicationContext初始化(二) SpringMVC源码阅读-dispatcher组件初始化过程(三) SpringMVC源码阅读-一个请求 阅读全文
posted @ 2021-11-15 18:03 意犹未尽 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 导航页 阅读全文
posted @ 2021-11-15 14:44 意犹未尽 阅读(378) 评论(0) 推荐(0) 编辑
摘要: 参考:https://www.cnblogs.com/LQBlog/p/18490319 阅读全文
posted @ 2024-12-04 10:14 意犹未尽 阅读(2) 评论(0) 推荐(0) 编辑
摘要: 常用API 查看可用的端点 curl http://127.0.0.1:8080/actuator 响应 { "_links": { "self": { "href": "http://127.0.0.1:8080/actuator", "templated": false }, "archaius 阅读全文
posted @ 2024-12-02 13:52 意犹未尽 阅读(6) 评论(0) 推荐(0) 编辑
摘要: git地址 https://github.com/mobz/elasticsearch-head 安装方式 浏览器插件 docker本地安装 集群健康值:yellow( 623 of 801 ):表示当前集群的全部主分片都正常运行,但是副本分片没有全部处在正常状态。 副本分片都是 Unassigne 阅读全文
posted @ 2024-11-28 20:00 意犹未尽 阅读(12) 评论(0) 推荐(0) 编辑
摘要: 管理类命名 Bootstrap,Starter 一般作为程序启动器使用,或者作为启动器的基类。通俗来说,可以认为是main函数的入口。 AbstractBootstrap ServerBootstrap MacosXApplicationStarter DNSTaskStarter Processo 阅读全文
posted @ 2024-11-22 10:12 意犹未尽 阅读(11) 评论(0) 推荐(0) 编辑
摘要: 官方文档: https://www.easy-es.cn/pages/ce1922/#常规聚合 目前感觉不错,简单CRUD支持 复杂的也可以混合模式支持 例子一 DSL { "size": 1, "query": { "bool": { "must": [ { "term": { "awardPun 阅读全文
posted @ 2024-11-12 11:55 意犹未尽 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 官方文档 https://sentinelguard.io/zh-cn/docs/basic-implementation.html 初始化时机 // 1.5.0 版本开始可以直接利用 try-with-resources 特性 自动回收调用 entry.exit() 配合注解使用 @Sentine 阅读全文
posted @ 2024-10-24 11:54 意犹未尽 阅读(6) 评论(0) 推荐(0) 编辑
摘要: 时机一引入alibaba-starter-sentinel 如果使用了alibaba-starter-sentinel则不需要手动调用因为com.alibaba.cloud.sentinel.custom.SentinelAutoConfiguration#init在这里面执行了自动调用 @Post 阅读全文
posted @ 2024-10-24 11:14 意犹未尽 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 事件描述 order服务出现频繁GC告警,app卡顿 事件回顾 【2024-10-21 08:20:04】order出现频繁GC告警 【2024-10-21 09:24:04】通过命令jmap -histo:live [pid]查看存活对象发现sentinel统计对象占用大量内存 【2024-10- 阅读全文
posted @ 2024-10-21 20:41 意犹未尽 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 什么是系统做深和系统做宽 系统做宽 我们一般做业务需求,都会做一期二期迭代。迭代后,能支持的业务场景越来越多也就是系统做宽 系统做深 我们在做根据业务需求做方案设计的时候,应当考虑这个业务场景使用的一些能力是否是定制化的,如果不是如何抽象化成业务中台的能力。能够给将来各个场景的业务服务或者业务做支撑 阅读全文
posted @ 2024-10-18 09:52 意犹未尽 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 入口 临时记录 org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor#postProcessProperties -> org.springframework.beans.factory.a 阅读全文
posted @ 2024-10-14 17:46 意犹未尽 阅读(3) 评论(0) 推荐(0) 编辑