摘要: #图片服务器 server { listen 443 ssl; server_name img.wwoo.xyz; root D:\IISHOST\img.wwoo.xyz; error_page 403 /error.html; location = /error.html { return 40 阅读全文
posted @ 2026-03-27 14:10 orboss 阅读(2) 评论(0) 推荐(0)
摘要: Querying Duplicates in MySQL 1 2 3 To find duplicate records in a MySQL table, you can use the GROUP BY clause along with the HAVING clause. This appr 阅读全文
posted @ 2025-10-09 10:20 orboss 阅读(75) 评论(0) 推荐(0)
摘要: 定时任务中的scheduleAtFixedRate方法 在Java的并发编程中,scheduleAtFixedRate是ScheduledExecutorService接口中的一个方法,用于在给定的初始延迟后,以固定的周期执行所提交的任务。这个方法非常适合需要多次执行的任务,比如定时统计数据、定期清 阅读全文
posted @ 2025-09-18 14:46 orboss 阅读(245) 评论(0) 推荐(0)