From 70783426b346b9e7eda198a5358a0441631116cb Mon Sep 17 00:00:00 2001 From: "xueli.xue" Date: Tue, 21 Jun 2016 10:59:19 +0800 Subject: [PATCH] =?UTF-8?q?=E2=80=9C@JobHandler=E2=80=9D=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E2=80=9C@Inherited=E2=80=9D=E6=B3=A8=E8=A7=A3=EF=BC=8C?= =?UTF-8?q?=E8=A7=A3=E5=86=B3BEAN=E5=9C=A8=E4=BA=8B=E5=8A=A1=E4=BB=A3?= =?UTF-8?q?=E7=90=86=E6=83=85=E5=86=B5=E4=B8=8B=EF=BC=8C=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E8=8E=B7=E5=8F=96=E8=87=AA=E5=AE=9A=E4=B9=89=E4=BB=A3=E7=90=86?= =?UTF-8?q?=E7=9A=84BUG?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../java/com/xxl/job/core/handler/annotation/JobHander.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/xxl-job-core/src/main/java/com/xxl/job/core/handler/annotation/JobHander.java b/xxl-job-core/src/main/java/com/xxl/job/core/handler/annotation/JobHander.java index 4ec6ac8b..1e1b0cb8 100644 --- a/xxl-job-core/src/main/java/com/xxl/job/core/handler/annotation/JobHander.java +++ b/xxl-job-core/src/main/java/com/xxl/job/core/handler/annotation/JobHander.java @@ -1,6 +1,7 @@ package com.xxl.job.core.handler.annotation; import java.lang.annotation.ElementType; +import java.lang.annotation.Inherited; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; import java.lang.annotation.Target; @@ -11,6 +12,7 @@ import java.lang.annotation.Target; */ @Target({ElementType.TYPE}) @Retention(RetentionPolicy.RUNTIME) +@Inherited public @interface JobHander { String name();