摘要:
-- 逗号分割 表t1, h5_service_score字段的字符串内容 SELECT id, h5_service_score, SUBSTRING_INDEX( SUBSTRING_INDEX( h5_service_score, ',', n ), ',', - 1 ) AS split F 阅读全文
摘要:
异常描述: 1.mysql数据库,插入记录,对象create_time(LocalDateTime)字段是手动赋值的,recordVo.setCreateTime(LocalDateTime.now()); 2.查询时的条件,时间字段 赋值如下,有时候能查出来,有时候不行。DateTimeForma 阅读全文
摘要:
转自:https://blog.csdn.net/weixin_45266856/article/details/129754122 是ssh中的key交换算法不兼容导致 ssh报错解决:vi /etc/ssh/sshd_config KexAlgorithms diffie-hellman-gro 阅读全文
摘要:
转自:https://www.cnblogs.com/fightingdeng1998/p/16047075.html用的包是 org.w3c.dom.Document下的 /** * @Author dengzp * @Date 2022/3/22 * @Version 1.0 * @Descri 阅读全文
摘要:
转自:https://developer.aliyun.com/article/1165600 @Autowired private RedisTemplate<String, Object> redisTemplate; private static final String LIMIT_LUA 阅读全文
摘要:
redis 3主3从的配置 启动正常,客户端命令使用正常,突然今天开发测试环境 有些模块报错了: org.springframework.data.redis.connection.PoolException: Returned connection io.lettuce.core.cluster. 阅读全文
摘要:
转自-- https://blog.csdn.net/u010674953/article/details/129261632 健康检查上篇文章中我们了解了Pod中容器的生命周期的两个钩子函数,PostStart与PreStop,其中PostStart是在容器创建后立即执行的,而PreStop这个钩 阅读全文
摘要:
实现 RocketMQPushConsumerLifecycleListener,手动增加监听的topic 方式1: https://blog.csdn.net/weixin_38456989/article/details/127943679 @Component @RocketMQMessage 阅读全文
摘要:
转自:https://www.cnblogs.com/luas/p/12097118.html 在日常工作开发过程中,经常会遇到需要启动多个服务实例的情况,相信大家都采用了不同的办法,甚至是笨办法。本篇文章将介绍一下Spring Boot工程如何在IDEA中启动多实例。 其实,也很简单,只需一个小小 阅读全文
摘要:
package com.cmcc.open.ota.config; import io.netty.util.HashedWheelTimer; import io.netty.util.Timeout; import io.netty.util.TimerTask; import lombok.e 阅读全文