摘要: spring源码阅读(一)-附录例子 spring源码阅读(二)-IOC之ClassPathXmlApplicationContext Spring源码阅读(八)-IOC之AnnotationConfigApplicationContext spring源码阅读(三)-Spring AOP用法和理解 阅读全文
posted @ 2022-02-10 10:39 意犹未尽 阅读(120) 评论(0) 推荐(0)
摘要: mybatis使用-helloword(一) mybatis使用-高级用法(二) mybatis源码阅读-SqlSessionFactory和SqlSession(三) mybatis源码阅读-Transaction和TransactionFactory(四) mybatis源码阅读-执行器Exec 阅读全文
posted @ 2021-12-04 14:39 意犹未尽 阅读(77) 评论(0) 推荐(0)
摘要: SpringMVC源码阅读-Root WebApplicationContext初始化(一) SpringMVC源码阅读-Servlet WebApplicationContext初始化(二) SpringMVC源码阅读-dispatcher组件初始化过程(三) SpringMVC源码阅读-一个请求 阅读全文
posted @ 2021-11-15 18:03 意犹未尽 阅读(59) 评论(0) 推荐(0)
摘要: 导航页 阅读全文
posted @ 2021-11-15 14:44 意犹未尽 阅读(433) 评论(0) 推荐(0)
摘要: 设置打包目录 运维的通用模版可能从项目根目录获取 <plugins> <!-- 配置Antrun插件(仅子模块需要) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</a 阅读全文
posted @ 2025-06-20 11:18 意犹未尽 阅读(2) 评论(0) 推荐(0)
摘要: MCP Server 说明 源码 MCP server处理SSe连接的地方 io.modelcontextprotocol.server.transport.WebFluxSseServerTransportProvider#handleSseConnection MCP server处理JRPC请 阅读全文
posted @ 2025-06-13 13:35 意犹未尽 阅读(26) 评论(0) 推荐(0)
摘要: 什么是响应式编程 Java 响应式编程(Reactive Programming)是一种​​基于事件驱动​​和​​异步数据流​​的编程范式,旨在通过非阻塞的方式高效处理数据流和异步操作。它的核心思想是​​响应变化​​(如数据更新、用户事件、网络请求等),并通过链式调用的方式组合异步操作 核心概念​​ 阅读全文
posted @ 2025-05-12 11:05 意犹未尽 阅读(102) 评论(0) 推荐(0)
摘要: 业务服务提供的压测代码 /** * @Author liqiang * @Description 网关测试 * @Date 2025/03/26/14:32 */ @RestController @RequestMapping("/c/gateway/testGateway") public cla 阅读全文
posted @ 2025-03-26 14:12 意犹未尽 阅读(26) 评论(0) 推荐(0)
摘要: 背景 使用es通过常规分页来做导出是遇到不能超过from不能跳过1万的问题。结合这个问题契机深入了解一下es的分页。 入参 { "from":10601, "size": 5 } 响应 { "error": { "root_cause": [ { "type": "illegal_argument_ 阅读全文
posted @ 2025-03-08 19:57 意犹未尽 阅读(30) 评论(0) 推荐(0)
摘要: 参考:https://www.cnblogs.com/LQBlog/p/18490319 阅读全文
posted @ 2024-12-04 10:14 意犹未尽 阅读(17) 评论(0) 推荐(0)
摘要: 引入包 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-actuator</artifactId> <version>${spring.boot.version}</ve 阅读全文
posted @ 2024-12-02 13:52 意犹未尽 阅读(46) 评论(0) 推荐(0)
摘要: git地址 https://github.com/mobz/elasticsearch-head 安装方式 浏览器插件 docker本地安装 集群健康值:yellow( 623 of 801 ):表示当前集群的全部主分片都正常运行,但是副本分片没有全部处在正常状态。 副本分片都是 Unassigne 阅读全文
posted @ 2024-11-28 20:00 意犹未尽 阅读(82) 评论(0) 推荐(0)
摘要: 管理类命名 Bootstrap,Starter 一般作为程序启动器使用,或者作为启动器的基类。通俗来说,可以认为是main函数的入口。 AbstractBootstrap ServerBootstrap MacosXApplicationStarter DNSTaskStarter Processo 阅读全文
posted @ 2024-11-22 10:12 意犹未尽 阅读(69) 评论(0) 推荐(0)
摘要: 官方文档: https://www.easy-es.cn/pages/ce1922/#常规聚合 目前感觉不错,简单CRUD支持 复杂的也可以混合模式支持 例子一 DSL { "size": 1, "query": { "bool": { "must": [ { "term": { "awardPun 阅读全文
posted @ 2024-11-12 11:55 意犹未尽 阅读(75) 评论(0) 推荐(0)