From ae4cfc11204228e7740cd6b84a96228a851835ad Mon Sep 17 00:00:00 2001 From: justtoplay Date: Thu, 18 Aug 2022 18:38:50 +0800 Subject: [PATCH 1/2] =?UTF-8?q?=E4=B8=8A=E4=BC=A0issue=E5=92=8Cpr=E6=A8=A1?= =?UTF-8?q?=E7=89=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitee/ISSUE_TEMPLATE.zh-CN.md | 14 ++++++++++++++ .gitee/PULL_REQUEST_TEMPLATE.zh-CN.md | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 .gitee/ISSUE_TEMPLATE.zh-CN.md create mode 100644 .gitee/PULL_REQUEST_TEMPLATE.zh-CN.md diff --git a/.gitee/ISSUE_TEMPLATE.zh-CN.md b/.gitee/ISSUE_TEMPLATE.zh-CN.md new file mode 100644 index 0000000..7b6e55d --- /dev/null +++ b/.gitee/ISSUE_TEMPLATE.zh-CN.md @@ -0,0 +1,14 @@ +### 该问题是怎么引起的? + + + +### xxl-job版本号 + +### xxl-job-plus版本号 + + +### 报错信息 + + + + diff --git a/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md new file mode 100644 index 0000000..66d4332 --- /dev/null +++ b/.gitee/PULL_REQUEST_TEMPLATE.zh-CN.md @@ -0,0 +1,14 @@ +### 相关的Issue + + +### 原因(目的、解决的问题等) + + +### 描述(做了什么,变更了什么) + + +### 测试用例(新增、改动、可能影响的功能) + + + + -- Gitee From 6d2ce8b5647993b4d1ab2777f1b754597da5d2a3 Mon Sep 17 00:00:00 2001 From: justtoplay Date: Thu, 18 Aug 2022 18:40:37 +0800 Subject: [PATCH 2/2] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=AE=A2=E6=88=B7?= =?UTF-8?q?=E7=AB=AF=E9=85=8D=E7=BD=AE=EF=BC=8C=E9=BB=98=E8=AE=A4=E6=8C=87?= =?UTF-8?q?=E5=AE=9Axxl-job-admin=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 2 +- .../com/justtoplay/xxl/job/plus/prop/XxlJobPlusProperties.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 47ab577..0055b73 100644 --- a/README.md +++ b/README.md @@ -183,7 +183,7 @@ xxl-job-core:2.3.1+ 3. 修改业务工程的application.properties配置文件 ``` - # xxl-job-admin注册到注册中心的名称 + # xxl-job-admin注册到注册中心的名称,默认xxl-job-admin,可不用配置。如xxl-job-admin注册名改动,请同步修改 xxl.job.plus.admin.service-name=xxl-job-admin # executor 注册到xxl-job-admin executor列表的名称,默认同spring.application.name,可不用配置 diff --git a/src/main/java/com/justtoplay/xxl/job/plus/prop/XxlJobPlusProperties.java b/src/main/java/com/justtoplay/xxl/job/plus/prop/XxlJobPlusProperties.java index 8f57403..d669e2d 100644 --- a/src/main/java/com/justtoplay/xxl/job/plus/prop/XxlJobPlusProperties.java +++ b/src/main/java/com/justtoplay/xxl/job/plus/prop/XxlJobPlusProperties.java @@ -74,7 +74,7 @@ public class XxlJobPlusProperties { public static class AdminProperties { - private String serviceName; + private String serviceName = "xxl-job-admin"; private String contextPath = "/xxl-job-admin"; -- Gitee