随笔 - 581  文章 - 0 评论 - 48 阅读 - 131万
< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

07 2021 档案
批量建表
摘要:需求:分表时,需要批量建表 # 第一步:创建存储过程CREATE PROCEDURE create_64_table(in val_s int, in val_e int)begindeclare i int;set i=val_s;while i<=val_e do set @sql_create 阅读全文
posted @ 2021-07-23 12:01 毛会懂 阅读(117) 评论(0) 推荐(0) 编辑
批量删表
摘要:需求:创建了64张表,需要全部删除。 # 第一步:创建存储过程CREATE PROCEDURE drop_64_table(in val_s int, in val_e int)begindeclare i int;set i=val_s;while i<=val_e do set @sql_dro 阅读全文
posted @ 2021-07-23 11:58 毛会懂 阅读(71) 评论(0) 推荐(0) 编辑
解决zookeeper集群重启 Error contacting service. It is probably not running 问题
摘要:参考:https://blog.csdn.net/qq_22211217/article/details/80639492 我的是用的这一条: 7 防火墙拦截端口 systemctl status firewalld.service systemctl stop firewalld.service 阅读全文
posted @ 2021-07-21 13:29 毛会懂 阅读(124) 评论(0) 推荐(0) 编辑
spring boot 集成 sharding jdbc 分库分表 数据库连接健康检查不通过
摘要:转自:https://blog.csdn.net/taopenglove/article/details/115008531 org.springframework.dao.InvalidDataAccessApiUsageException: ConnectionCallback; isValid 阅读全文
posted @ 2021-07-13 15:43 毛会懂 阅读(3303) 评论(0) 推荐(0) 编辑
含有T的字符串转LocalDateTime
摘要:2021-10-10T10:10:10 含有T的字符串转LocalDateTimeDateTimeFormatter formatter = DateTimeFormatter.ISO_LOCAL_DATE_TIME;LocalDateTime dateTimeParked = LocalDateT 阅读全文
posted @ 2021-07-13 11:44 毛会懂 阅读(1284) 评论(0) 推荐(0) 编辑
REDIS有序集合类型SORT SET
摘要:参考: https://www.cnblogs.com/lihaoyang/p/6053492.html https://www.runoob.com/redis/redis-sorted-sets.html?ivk_sa=1024320u 阅读全文
posted @ 2021-07-07 11:52 毛会懂 阅读(30) 评论(0) 推荐(0) 编辑
jmeter压测dubbo接口
摘要:文章参考:https://blog.csdn.net/cyjs1988/article/details/84258046 https://www.cnblogs.com/liuyuelinfighting/p/14972958.html (优先看) dubbo服务参考:https://www.cnb 阅读全文
posted @ 2021-07-05 16:47 毛会懂 阅读(168) 评论(0) 推荐(0) 编辑
SpringBoot整合dubbo2.7.12
摘要:参考: https://blog.csdn.net/ycf921244819/article/details/103474394 提供者代码: dubbo-test-provider有两个子模块, dubbo-dubbo-test-api模块提供接口, dubbo-test-provider1模块实 阅读全文
posted @ 2021-07-02 19:27 毛会懂 阅读(1393) 评论(0) 推荐(0) 编辑
linux安装zookeeper
摘要:参考: https://blog.csdn.net/qq_33472491/article/details/117960548 执行./zkServer.sh start,如果报没有权限, 则需要 chmod 777 zkServer.sh 阅读全文
posted @ 2021-07-02 18:54 毛会懂 阅读(37) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示