摘要: 同步数据需要分批操作,每次同步1000条,都需要提交事务 @Service public class MyService { @Autowired private MyService self; // 注意使用自身代理对象来触发事务 // 循环调用此方法 @Transactional(propaga 阅读全文
posted @ 2024-11-16 22:19 塔下补刀就是菜丶 阅读(4) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-11-09 15:53 塔下补刀就是菜丶 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 优点:装饰类和被装饰类可以独立发展,不会相互耦合,装饰模式是继承的一个替代模式,装饰模式可以动态扩展一个实现类的功能。 缺点:多层装饰比较复杂。 实际使用:这里我们说一下,在java中I/O便使用了装饰者模式。 阅读全文
posted @ 2022-11-09 11:28 塔下补刀就是菜丶 阅读(10) 评论(0) 推荐(0) 编辑
摘要: DM Mybatis中xml批量执行 <foreach collection="list" item="device" separator=";"> MERGE INTO eq_group_device t1 USING (SELECT #{device.id} AS id,#{device.gro 阅读全文
posted @ 2022-09-06 18:59 塔下补刀就是菜丶 阅读(239) 评论(0) 推荐(0) 编辑
摘要: 错误信息: sun.awt.FontConfiguration.getVersion(FontConfiguration.java:1264) 系统环境问题 缺少程序依赖字体环境 解决方案: 下载字体,重启程序 yum -y install fontconfig 阅读全文
posted @ 2022-08-31 13:54 塔下补刀就是菜丶 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2022-02-17 14:44 塔下补刀就是菜丶 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2021-07-01 18:01 塔下补刀就是菜丶 阅读(20) 评论(0) 推荐(0) 编辑
摘要: package com.thread; /** * @author a * @date 2021/3/16 7:58 * @description */ public class Test4 { static Thread t1 = null, t2 = null; public static vo 阅读全文
posted @ 2021-03-16 08:19 塔下补刀就是菜丶 阅读(37) 评论(0) 推荐(0) 编辑
摘要: package com.thread; import java.util.concurrent.ArrayBlockingQueue; import java.util.concurrent.ThreadPoolExecutor; import java.util.concurrent.TimeUn 阅读全文
posted @ 2021-03-13 18:10 塔下补刀就是菜丶 阅读(51) 评论(0) 推荐(0) 编辑
摘要: CREATE DEFINER=`root`@`%` PROCEDURE `P_codestream_count_main`(IN `P_LINKID` varchar(32)) COMMENT '国标码流分析统计主函数' BEGIN #Routine body goes here... BEGIN 阅读全文
posted @ 2021-01-15 18:19 塔下补刀就是菜丶 阅读(142) 评论(0) 推荐(0) 编辑