- 博客(7)
- 收藏
- 关注
原创 RabbitMQ异常:No method found for class [B
昨天新写了个队列,日志疯狂报“No method found for class [B”错误,日志一度干到50G。
2022-10-27 13:42:04
2131
1
原创 mysql查询数据库内是否存在指定表。
查询数据库内是否存在指定表。‘prod_a’ 为库名‘table_b’ 为表名返回值为0则代表没有返回1则代表存在SELECT count(*) numFROM information_schema.TABLES WHERE table_schema = 'prod_a' AND table_name = 'table_b' AND table_type = 'BASE TABLE'...
2022-03-22 14:55:23
1964
原创 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
735
原创 MySQL字符集错误(utf8mb4_general_ci,IMPLICIT) and (utf8_general_ci,COERCIBLE)
关联表字段字符集不同,更改关联字段字符集即可。并非表关联,mybatis入参也报错。可通过 CONVERT (#{cardno} USING utf8mb4 )规避。SELECT COUNT( 1 ) num FROM tableaWHERE cardno = CONVERT (#{cardno} USING utf8mb4 ) LIMIT 1...
2021-05-20 15:21:22
1056
2
空空如也
springboot集成ES,ES服务必须运行项目才可以启动么?
2022-10-19
TA创建的收藏夹 TA关注的收藏夹
TA关注的人