1 2 3 4 5 ··· 13 下一页
摘要: SELECT psd.xm from aptitude_person_r apr left join personnel_snapshot_details psd on apr.snapshot_id = psd.snapshot_id where psd.del_flag = 2 and psd. 阅读全文
posted @ 2025-01-23 13:41 懂得归零 阅读(22) 评论(0) 推荐(0)
摘要: // - new Integer()构造方法, 不使用缓存池Integer a1 = new Integer(127);Integer b1 = new Integer(127);System.out.println(a1 == b1); // false// - Integer.valueOf() 阅读全文
posted @ 2024-07-02 16:55 懂得归零 阅读(24) 评论(0) 推荐(0)
摘要: 1、 docker-compose.yml 使用 volumes 关键字定义数据卷映射 version: '3' services: my_service: image: my_image:latest volumes: - /host_data:/container_data 2、使用 docke 阅读全文
posted @ 2024-04-25 17:56 懂得归零 阅读(225) 评论(0) 推荐(0)
摘要: 1、添加pom依赖 <dependency> <groupId>com.jcraft</groupId> <artifactId>jsch</artifactId> <version>0.1.55</version></dependency> 2、示例代码 public static void ma 阅读全文
posted @ 2024-02-26 08:36 懂得归零 阅读(762) 评论(0) 推荐(0)
摘要: public R<Boolean> exportCsv(HttpServletResponse response, @RequestBody DrQueryDto queryDto) throws Exception { //解决excel打开csv文件中文乱码 //byte[] utf8bom={ 阅读全文
posted @ 2024-02-22 09:25 懂得归零 阅读(42) 评论(0) 推荐(0)
摘要: 1、安装nfs-common工具包 sudo apt install nfs-common 2、查询目标服务器有哪些可挂载资源(注意对外开放的ip) sudo showmount -e 192.168.20.10 3、执行挂载命令 sudo mount 192.168.20.10:/data/out 阅读全文
posted @ 2023-11-29 13:16 懂得归零 阅读(7) 评论(0) 推荐(0)
摘要: url: jdbc:postgresql://192.168.20.10:5432/库名称?reWriteBatchedInserts=true reWriteBatchedInserts=true;控制是否将批量插入语句转换成更高效的形式 阅读全文
posted @ 2023-09-04 09:18 懂得归零 阅读(1172) 评论(0) 推荐(0)
摘要: 原因:@Transactional是Spring框架提供的注解,用于注解类或方法,表示此类或方法需要在一个事务内执行。 1、一个事务中对同一张表进行了多次操作 2、在一个事务中对同一张表进行了读操作(select语句)和写操作(insert、update、delete语句)当出现这种情况时,可能会导 阅读全文
posted @ 2023-08-31 10:32 懂得归零 阅读(1418) 评论(0) 推荐(0)
摘要: import org.apache.poi.xssf.usermodel.XSSFWorkbook;import javax.servlet.ServletOutputStream;import javax.servlet.http.HttpServletResponse;import java.i 阅读全文
posted @ 2023-07-12 08:46 懂得归零 阅读(68) 评论(0) 推荐(0)
摘要: VACUUM FULL xxx; 阅读全文
posted @ 2023-07-06 09:25 懂得归零 阅读(15) 评论(0) 推荐(0)
1 2 3 4 5 ··· 13 下一页