摘要: springboot中使用logback将日志写入到ELK平台 原文:http://www.tingcream.com/blogArticle/detail/b9ab76ffaeb547388522c9b982e6f419 ELK 是由elasticsearch 、logstash、kibana 三 阅读全文
posted @ 2022-12-27 14:44 逐星i 阅读(390) 评论(0) 推荐(0) 编辑
摘要: Jenkins+Docker 一键自动化部署 SpringBoot 项目 本文章实现最简单全面的Jenkins+docker+springboot 一键自动部署项目,步骤齐全,少走坑路。 环境:centos7+git(gitee) 简述实现步骤:在docker安装jenkins,配置jenkins基 阅读全文
posted @ 2022-12-23 10:37 逐星i 阅读(242) 评论(0) 推荐(0) 编辑
摘要: 问题 本文主要研究下spring mvc的No thread-bound request found异常 : java.util.concurrent.CompletionException: java.lang.IllegalStateException: No thread-bound requ 阅读全文
posted @ 2022-11-14 14:27 逐星i 阅读(2453) 评论(0) 推荐(0) 编辑
摘要: 1.apple web登陆配置 2.配置 3.官方文档 https://help.apple.com/developer-account/?lang=zh-cn#/devde676e696 (登陆配置) https://developer.apple.com/documentation/sign_i 阅读全文
posted @ 2022-11-04 16:30 逐星i 阅读(506) 评论(0) 推荐(0) 编辑
摘要: 1.参考:https://zhuanlan.zhihu.com/p/506636775 2.官方文档:https://developer.android.google.cn/google/play/billing/integrate 3.Pub/sub api:https://cloud.googl 阅读全文
posted @ 2022-09-20 14:07 逐星i 阅读(1945) 评论(0) 推荐(1) 编辑
摘要: 3000帧动画图解MySQL为什么需要binlog、redo log和undo log 原文:https://mp.weixin.qq.com/s/lvw89Ix73oTqc2juF4X5sg 以下文章来源于CoderW ,作者CoderW CoderW. 全文建立在MySQL的存储引擎为InnoD 阅读全文
posted @ 2022-08-04 16:00 逐星i 阅读(156) 评论(0) 推荐(0) 编辑
摘要: SpringBoot如何打印带参数的sql和执行时间-p6spy 背景:最近优化项目,然后有找影响效率的地方,就像打印所有sql日志 然后发现了mybatisplus的这个插件 前言如果你恰好使用 Mybatis-plus 框架,那么在开发环境就不能错过它提供的 PerformanceInterce 阅读全文
posted @ 2022-06-24 10:46 逐星i 阅读(906) 评论(0) 推荐(0) 编辑
摘要: linux查找字符串所在行,输出行号 查找某个字符串所在行,可以用grep或awk来解决。二者最大区别是,grep的结果是输出匹配内容的同时输出其所在行号;awk可以仅输出行号,不输出匹配内容。按需选择。 【模糊匹配 】输出行号 grep # 输出内容同时输出行号 grep -n "要匹配的字符串" 阅读全文
posted @ 2022-06-13 11:50 逐星i 阅读(3426) 评论(0) 推荐(0) 编辑
摘要: 问题 在开发时遇到 当Feign开启Hystrix支持时, ServletRequestAttributes attributes = (ServletRequestAttributes) RequestContextHolder.getRequestAttributes(); 是 null 。 使 阅读全文
posted @ 2022-05-30 15:38 逐星i 阅读(94) 评论(0) 推荐(0) 编辑
摘要: 查看防火墙是否开启systemctl status firewalld 若没有开启则是开启状态systemctl start firewalld 关闭则start改为stop 查看所有开启的端口firewall-cmd --list-ports 注:启动防火墙后,默认没有开启任何端口,需要手动开启端 阅读全文
posted @ 2022-05-11 09:45 逐星i 阅读(278) 评论(0) 推荐(0) 编辑