会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
炫舞风中
博客园
首页
新随笔
联系
订阅
管理
上一页
1
2
3
4
5
6
7
···
21
下一页
2021年12月31日
nginx配置websocket请求
摘要: location /ws/ { proxy_http_version 1.1; proxy_pass http://127.0.0.1:8080/; proxy_set_header Upgrade "websocket"; proxy_set_header Connection "Upgrade"
阅读全文
posted @ 2021-12-31 15:09 炫舞风中
阅读(89)
评论(0)
推荐(0)
2021年12月27日
引入RabbitMQ后,如何保证全链路数据100%不丢
摘要: 参考:https://mp.weixin.qq.com/s/iiFMwD0thp3SDooRGhtWgA 我们都知道,消息从生产端到消费端消费要经过3个步骤: 1、生产端发送消息到RabbitMQ; 2、RabbitMQ发送消息到消费端; 3、消费端消费这条消息; 这3个步骤中的每一步都有可能导致消
阅读全文
posted @ 2021-12-27 17:49 炫舞风中
阅读(141)
评论(0)
推荐(0)
使用logstash迁移elasticsearch
摘要: input { elasticsearch { hosts => "127.0.0.1:9200" index => "building" size => 5000 scroll => "5m" docinfo => true } } filter { } output { elasticsearc
阅读全文
posted @ 2021-12-27 11:22 炫舞风中
阅读(234)
评论(0)
推荐(0)
SpringBoot Logback无法获取配置中心属性
摘要: 一、问题出现 最近在做项目中,需要把项目中的日志信息通过logstash将规定格式的消息发送到elasticsearch中,在日志的配置文件(logback-spring.xml)中我们需要加入logstash的配置信息,我们的logstash信息存在Nacos的配置中心,就出现项目启动无法获取到l
阅读全文
posted @ 2021-12-27 11:15 炫舞风中
阅读(748)
评论(0)
推荐(0)
谷歌浏览器chrome console 发送POST/GET请求
摘要: 转载:https://www.cnblogs.com/clis/p/12724239.html
阅读全文
posted @ 2021-12-27 11:06 炫舞风中
阅读(476)
评论(0)
推荐(0)
2021年12月13日
mybatis批量插入
摘要: 一、在mybatis中ExecutorType的使用 1、Mybatis内置的ExecutorType有3种,默认的是simple,该模式下它为每个语句的执行创建一个新的预处理语句,单条提交sql;而batch模式重复使用已经预处理的语句, 并且批量执行所有更新语句,显然batch性能将更优; 2、
阅读全文
posted @ 2021-12-13 16:21 炫舞风中
阅读(953)
评论(0)
推荐(0)
2021年9月23日
JAVA 线上故障排查完整套路
摘要: 转载:https://mp.weixin.qq.com/s/I1qp1pwWJY3EeFTntA5uAQ
阅读全文
posted @ 2021-09-23 11:42 炫舞风中
阅读(23)
评论(0)
推荐(0)
2021年9月17日
23 种设计模式的通俗解释
摘要: 转载:https://mp.weixin.qq.com/s/o9Ibf9x9zLkrYXNdOR-APA
阅读全文
posted @ 2021-09-17 15:58 炫舞风中
阅读(25)
评论(0)
推荐(0)
让springboot不需要controller、service、dao、mapper
摘要: 转载:https://mp.weixin.qq.com/s/pBUN2vBcbFKYgN_-OmM4Rg
阅读全文
posted @ 2021-09-17 11:31 炫舞风中
阅读(154)
评论(0)
推荐(0)
2021年6月2日
SpringBoot项目瘦身,实现增量部署
摘要: 转载:https://www.cnblogs.com/hujunwei/p/14029909.html
阅读全文
posted @ 2021-06-02 14:55 炫舞风中
阅读(218)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
···
21
下一页
公告