摘要: zhuan:https://blog.csdn.net/weixin_43168010/article/details/103512942 @Autowired private Test test; @Override public List<Integer> findByMonth() { Lis 阅读全文
posted @ 2021-10-13 17:54 马云12314 阅读(622) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/singc/article/details/108646348 2 垃圾回收与算法 2.1 回收对象 垃圾回收对象通常是指已死亡的变量。常用的确认算法有2种: 引用计数法 可达性分析法 2.2 回收算法 标记算法 复制算法 标记-整理算法 阅读全文
posted @ 2021-10-09 09:57 马云12314 阅读(18) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/qican/p/11496820.html 阅读全文
posted @ 2021-08-04 20:25 马云12314 阅读(18) 评论(0) 推荐(0) 编辑
摘要: @Data@AllArgsConstructor@NoArgsConstructorclass Nation extends BaseSerializable { @JSONField(defaultValue = "汉族", name= "name") private String na_me; 阅读全文
posted @ 2021-08-04 11:00 马云12314 阅读(357) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/ycc-blog-2020/p/13855840.html on duplicate key update 阅读全文
posted @ 2021-08-03 15:51 马云12314 阅读(24) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/rogerjava/article/details/23748751 阅读全文
posted @ 2021-07-30 19:02 马云12314 阅读(11) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/frankcui/p/14135978.html#_label3_1_2_0 内容:https://blog.csdn.net/sufu1065/article/details/88051083 阅读全文
posted @ 2021-07-26 14:52 马云12314 阅读(59) 评论(0) 推荐(0) 编辑
摘要: @DateTimeFormat(pattern = "yyyy-MM-dd HH:mm:ss") // 写入数据库时格式化@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss", timezone = "GMT+8") // 出参格式化private LocalDat 阅读全文
posted @ 2021-07-23 17:51 马云12314 阅读(93) 评论(0) 推荐(0) 编辑
摘要: <dependency> <groupId>org.apache.kafka</groupId> <artifactId>kafka_2.11</artifactId> <version>0.11.0.2</version> <exclusions> <exclusion> <artifactId> 阅读全文
posted @ 2021-07-16 15:24 马云12314 阅读(46) 评论(0) 推荐(0) 编辑
摘要: package com.kafka.consume;import org.apache.kafka.clients.consumer.ConsumerRecord;import org.springframework.kafka.annotation.KafkaListener;import jav 阅读全文
posted @ 2021-07-16 09:33 马云12314 阅读(846) 评论(0) 推荐(0) 编辑