摘要: nohup java -jar demo.jar > nohup.log & 阅读全文
posted @ 2022-09-29 19:06 _Lawrence 阅读(163) 评论(0) 推荐(0) 编辑
摘要: linux /opt/jar# netstat -tunpl|grep 8804kill 进程号 windwos netstat -ano |findstr 8804 taskkill /pid 进程号 -f -t 阅读全文
posted @ 2022-09-29 19:04 _Lawrence 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 1、String.format("%.2f",(float) 2/3) 2、DecimalFormat decimalFormat = new DecimalFormat("#.00"); decimalFormat.format((double) 10/3); 阅读全文
posted @ 2022-09-29 18:56 _Lawrence 阅读(56) 评论(0) 推荐(0) 编辑
摘要: SHOW BINARY LOGS; set global binlog_expire_logs_seconds=60*60*24; show variables like '%expire%'; flush privileges; 永久改动可以找到/etc/mysql/my.cnf(Ubuntu)文 阅读全文
posted @ 2022-09-29 17:49 _Lawrence 阅读(167) 评论(0) 推荐(0) 编辑