会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
意犹未尽
只要在学习,则在进步。
博客园
首页
新随笔
联系
订阅
管理
[置顶]
Spring源码系列导航
摘要: spring源码阅读(一)-附录例子 spring源码阅读(二)-IOC之ClassPathXmlApplicationContext Spring源码阅读(八)-IOC之AnnotationConfigApplicationContext spring源码阅读(三)-Spring AOP用法和理解
阅读全文
posted @ 2022-02-10 10:39 意犹未尽
阅读(120)
评论(0)
推荐(0)
[置顶]
MyBatis系列
摘要: mybatis使用-helloword(一) mybatis使用-高级用法(二) mybatis源码阅读-SqlSessionFactory和SqlSession(三) mybatis源码阅读-Transaction和TransactionFactory(四) mybatis源码阅读-执行器Exec
阅读全文
posted @ 2021-12-04 14:39 意犹未尽
阅读(77)
评论(0)
推荐(0)
[置顶]
SpringMVC系列导航
摘要: SpringMVC源码阅读-Root WebApplicationContext初始化(一) SpringMVC源码阅读-Servlet WebApplicationContext初始化(二) SpringMVC源码阅读-dispatcher组件初始化过程(三) SpringMVC源码阅读-一个请求
阅读全文
posted @ 2021-11-15 18:03 意犹未尽
阅读(59)
评论(0)
推荐(0)
[置顶]
Spring-Security系列导航
摘要: 导航页
阅读全文
posted @ 2021-11-15 14:44 意犹未尽
阅读(433)
评论(0)
推荐(0)
2025年6月20日
maven-antrun-plugin插件
摘要: 设置打包目录 运维的通用模版可能从项目根目录获取 <plugins> <!-- 配置Antrun插件(仅子模块需要) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</a
阅读全文
posted @ 2025-06-20 11:18 意犹未尽
阅读(2)
评论(0)
推荐(0)
2025年6月13日
Spring AI-MCP源码整理
摘要: MCP Server 说明 源码 MCP server处理SSe连接的地方 io.modelcontextprotocol.server.transport.WebFluxSseServerTransportProvider#handleSseConnection MCP server处理JRPC请
阅读全文
posted @ 2025-06-13 13:35 意犹未尽
阅读(26)
评论(0)
推荐(0)
2025年5月12日
java响应式编程基础
摘要: 什么是响应式编程 Java 响应式编程(Reactive Programming)是一种基于事件驱动和异步数据流的编程范式,旨在通过非阻塞的方式高效处理数据流和异步操作。它的核心思想是响应变化(如数据更新、用户事件、网络请求等),并通过链式调用的方式组合异步操作 核心概念
阅读全文
posted @ 2025-05-12 11:05 意犹未尽
阅读(102)
评论(0)
推荐(0)
2025年3月26日
压测实践案例之网关
摘要: 业务服务提供的压测代码 /** * @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)
2025年3月8日
elasticseach-分页搜索
摘要: 背景 使用es通过常规分页来做导出是遇到不能超过from不能跳过1万的问题。结合这个问题契机深入了解一下es的分页。 入参 { "from":10601, "size": 5 } 响应 { "error": { "root_cause": [ { "type": "illegal_argument_
阅读全文
posted @ 2025-03-08 19:57 意犹未尽
阅读(30)
评论(0)
推荐(0)
2024年12月4日
sentinel增加ip来源限流后占用服务高内存问题分析
摘要: 参考:https://www.cnblogs.com/LQBlog/p/18490319
阅读全文
posted @ 2024-12-04 10:14 意犹未尽
阅读(17)
评论(0)
推荐(0)
2024年12月2日
spring-boot-actuator
摘要: 引入包 <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)
2024年11月28日
elasticseach-head插件安装及使用
摘要: git地址 https://github.com/mobz/elasticsearch-head 安装方式 浏览器插件 docker本地安装 集群健康值:yellow( 623 of 801 ):表示当前集群的全部主分片都正常运行,但是副本分片没有全部处在正常状态。 副本分片都是 Unassigne
阅读全文
posted @ 2024-11-28 20:00 意犹未尽
阅读(82)
评论(0)
推荐(0)
2024年11月22日
设计模式之美学习-代码命名规范
摘要: 管理类命名 Bootstrap,Starter 一般作为程序启动器使用,或者作为启动器的基类。通俗来说,可以认为是main函数的入口。 AbstractBootstrap ServerBootstrap MacosXApplicationStarter DNSTaskStarter Processo
阅读全文
posted @ 2024-11-22 10:12 意犹未尽
阅读(69)
评论(0)
推荐(0)
2024年11月12日
ES-Client-api-easy es
摘要: 官方文档: 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)
下一页
公告