From e9362be210a6789c17503f0719a76f5fdee40df3 Mon Sep 17 00:00:00 2001 From: xuxueli <931591021@qq.com> Date: Sat, 25 Oct 2025 06:14:11 +0800 Subject: [PATCH] =?UTF-8?q?feat(executor):=20=E6=96=B0=E5=A2=9E=E4=BB=BB?= =?UTF-8?q?=E5=8A=A1=E6=89=AB=E6=8F=8F=E6=8E=92=E9=99=A4=E8=B7=AF=E5=BE=84?= =?UTF-8?q?=E9=85=8D=E7=BD=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在执行器中新增 excludedPackage 配置项,支持指定包路径下的 Bean 在任务扫描时被忽略 - 支持配置多个包路径,使用逗号分隔 - 优化任务扫描逻辑,跳过懒加载和排除包中的 Bean - 完善日志输出,提升调试与维护效率 nextTriggerTime 方法日志输出格式问题 --- .../src/main/resources/application.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xxl-job-executor-samples/xxl-job-executor-sample-springboot/src/main/resources/application.properties b/xxl-job-executor-samples/xxl-job-executor-sample-springboot/src/main/resources/application.properties index 826298ab..7489c94c 100644 --- a/xxl-job-executor-samples/xxl-job-executor-sample-springboot/src/main/resources/application.properties +++ b/xxl-job-executor-samples/xxl-job-executor-sample-springboot/src/main/resources/application.properties @@ -25,5 +25,5 @@ xxl.job.executor.port=9999 xxl.job.executor.logpath=/data/applogs/xxl-job/jobhandler ### xxl-job executor log-retention-days xxl.job.executor.logretentiondays=30 -### xxl-job executor excluded package, will skip when scan job. for example: org.springframework.,spring. +### xxl-job executor excluded package, will skip scan job. such as "org.xxx01" or "org.xxx01,org.xxx02" xxl.job.executor.excludedpackage=org.springframework,spring