- 博客(7)
- 收藏
- 关注
原创 RabbitMQ异常:No method found for class [B
昨天新写了个队列,日志疯狂报“No method found for class [B”错误,日志一度干到50G。
2022-10-27 13:42:04
2189
1
原创 mysql查询数据库内是否存在指定表。
查询数据库内是否存在指定表。 ‘prod_a’ 为库名 ‘table_b’ 为表名 返回值为0则代表没有 返回1则代表存在 SELECT count(*) num FROM information_schema.TABLES WHERE table_schema = 'prod_a' AND table_name = 'table_b' AND table_type = 'BASE TABLE' ...
2022-03-22 14:55:23
1978
原创 Java HashMap深克隆
public static void main(String[] args) { HashMap<String, Object> aMap = new HashMap<String, Object>(); aMap.put("title", "我想深拷贝。"); aMap.put("info", "你觉得我还在么?"); HashMap<String, Object> bMap = new HashMap<String
2021-05-20 19:39:14
755
原创 MySQL字符集错误(utf8mb4_general_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE)
关联表字段字符集不同,更改关联字段字符集即可。 并非表关联,mybatis入参也报错。可通过 CONVERT (#{cardno} USING utf8mb4 )规避。 SELECT COUNT( 1 ) num FROM tablea WHERE cardno = CONVERT (#{cardno} USING utf8mb4 ) LIMIT 1 ...
2021-05-20 15:21:22
1073
2
空空如也
springboot集成ES,ES服务必须运行项目才可以启动么?
2022-10-19
TA创建的收藏夹 TA关注的收藏夹
TA关注的人