Browse Source

升级正式版本:v2.0.2

xuxueli 6 years ago
parent
commit
0cd0dd9dce

+ 1 - 1
doc/XXL-JOB官方文档.md View File

1421
 - 4、底层通讯组件升级,修复通讯异常时无效等待的问题;
1421
 - 4、底层通讯组件升级,修复通讯异常时无效等待的问题;
1422
 - 5、执行器启动之后jetty停止的问题修复;
1422
 - 5、执行器启动之后jetty停止的问题修复;
1423
 
1423
 
1424
-### 6.24 版本 v2.0.2 Release Notes[迭代中]
1424
+### 6.24 版本 v2.0.2 Release Notes[2019-04-20]
1425
 - 1、底层通讯方案优化:升级较新版本xxl-rpc,由"JETTY"方案调整为"NETTY_HTTP"方案,执行器内嵌netty-http-server提供服务,调度中心复用容器端口提供服务;
1425
 - 1、底层通讯方案优化:升级较新版本xxl-rpc,由"JETTY"方案调整为"NETTY_HTTP"方案,执行器内嵌netty-http-server提供服务,调度中心复用容器端口提供服务;
1426
 - 2、任务告警逻辑调整,改为通过扫描失败日志方式触发。一方面精确扫描失败任务,降低扫描范围;另一方面取消内存队列,降低线程内存消耗;
1426
 - 2、任务告警逻辑调整,改为通过扫描失败日志方式触发。一方面精确扫描失败任务,降低扫描范围;另一方面取消内存队列,降低线程内存消耗;
1427
 - 3、Quartz触发线程池废弃并替换为 "XxlJobThreadPool",降低线程切换、内存占用带来的消耗,提高调度性能;
1427
 - 3、Quartz触发线程池废弃并替换为 "XxlJobThreadPool",降低线程切换、内存占用带来的消耗,提高调度性能;

+ 1 - 1
pom.xml View File

3
 	<modelVersion>4.0.0</modelVersion>
3
 	<modelVersion>4.0.0</modelVersion>
4
 	<groupId>com.xuxueli</groupId>
4
 	<groupId>com.xuxueli</groupId>
5
 	<artifactId>xxl-job</artifactId>
5
 	<artifactId>xxl-job</artifactId>
6
-	<version>2.0.2-SNAPSHOT</version>
6
+	<version>2.0.2</version>
7
 	<packaging>pom</packaging>
7
 	<packaging>pom</packaging>
8
 
8
 
9
 	<name>${project.artifactId}</name>
9
 	<name>${project.artifactId}</name>

+ 1 - 1
xxl-job-admin/pom.xml View File

4
 	<parent>
4
 	<parent>
5
 		<groupId>com.xuxueli</groupId>
5
 		<groupId>com.xuxueli</groupId>
6
 		<artifactId>xxl-job</artifactId>
6
 		<artifactId>xxl-job</artifactId>
7
-		<version>2.0.2-SNAPSHOT</version>
7
+		<version>2.0.2</version>
8
 	</parent>
8
 	</parent>
9
 	<artifactId>xxl-job-admin</artifactId>
9
 	<artifactId>xxl-job-admin</artifactId>
10
 	<packaging>jar</packaging>
10
 	<packaging>jar</packaging>

+ 1 - 1
xxl-job-admin/src/main/resources/i18n/message.properties View File

1
 admin_name=任务调度中心
1
 admin_name=任务调度中心
2
 admin_name_full=分布式任务调度平台XXL-JOB
2
 admin_name_full=分布式任务调度平台XXL-JOB
3
-admin_version=2.0.2-SNAPSHOT
3
+admin_version=2.0.2
4
 
4
 
5
 ## system
5
 ## system
6
 system_tips=系统提示
6
 system_tips=系统提示

+ 1 - 1
xxl-job-admin/src/main/resources/i18n/message_en.properties View File

1
 admin_name=Scheduling Center
1
 admin_name=Scheduling Center
2
 admin_name_full=Distributed Task Scheduling Platform XXL-JOB
2
 admin_name_full=Distributed Task Scheduling Platform XXL-JOB
3
-admin_version=2.0.2-SNAPSHOT
3
+admin_version=2.0.2
4
 
4
 
5
 ## system
5
 ## system
6
 system_tips=System message
6
 system_tips=System message

+ 1 - 1
xxl-job-core/pom.xml View File

4
 	<parent>
4
 	<parent>
5
 		<groupId>com.xuxueli</groupId>
5
 		<groupId>com.xuxueli</groupId>
6
 		<artifactId>xxl-job</artifactId>
6
 		<artifactId>xxl-job</artifactId>
7
-		<version>2.0.2-SNAPSHOT</version>
7
+		<version>2.0.2</version>
8
 	</parent>
8
 	</parent>
9
 	<artifactId>xxl-job-core</artifactId>
9
 	<artifactId>xxl-job-core</artifactId>
10
 	<packaging>jar</packaging>
10
 	<packaging>jar</packaging>

+ 1 - 1
xxl-job-executor-samples/pom.xml View File

5
     <parent>
5
     <parent>
6
         <groupId>com.xuxueli</groupId>
6
         <groupId>com.xuxueli</groupId>
7
         <artifactId>xxl-job</artifactId>
7
         <artifactId>xxl-job</artifactId>
8
-        <version>2.0.2-SNAPSHOT</version>
8
+        <version>2.0.2</version>
9
     </parent>
9
     </parent>
10
     <artifactId>xxl-job-executor-samples</artifactId>
10
     <artifactId>xxl-job-executor-samples</artifactId>
11
     <packaging>pom</packaging>
11
     <packaging>pom</packaging>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-frameless/pom.xml View File

6
     <parent>
6
     <parent>
7
         <groupId>com.xuxueli</groupId>
7
         <groupId>com.xuxueli</groupId>
8
         <artifactId>xxl-job-executor-samples</artifactId>
8
         <artifactId>xxl-job-executor-samples</artifactId>
9
-        <version>2.0.2-SNAPSHOT</version>
9
+        <version>2.0.2</version>
10
     </parent>
10
     </parent>
11
     <artifactId>xxl-job-executor-sample-frameless</artifactId>
11
     <artifactId>xxl-job-executor-sample-frameless</artifactId>
12
     <packaging>jar</packaging>
12
     <packaging>jar</packaging>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-jfinal/pom.xml View File

5
     <parent>
5
     <parent>
6
         <artifactId>xxl-job-executor-samples</artifactId>
6
         <artifactId>xxl-job-executor-samples</artifactId>
7
         <groupId>com.xuxueli</groupId>
7
         <groupId>com.xuxueli</groupId>
8
-        <version>2.0.2-SNAPSHOT</version>
8
+        <version>2.0.2</version>
9
     </parent>
9
     </parent>
10
     <modelVersion>4.0.0</modelVersion>
10
     <modelVersion>4.0.0</modelVersion>
11
     <artifactId>xxl-job-executor-sample-jfinal</artifactId>
11
     <artifactId>xxl-job-executor-sample-jfinal</artifactId>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-nutz/pom.xml View File

5
     <parent>
5
     <parent>
6
         <groupId>com.xuxueli</groupId>
6
         <groupId>com.xuxueli</groupId>
7
         <artifactId>xxl-job-executor-samples</artifactId>
7
         <artifactId>xxl-job-executor-samples</artifactId>
8
-        <version>2.0.2-SNAPSHOT</version>
8
+        <version>2.0.2</version>
9
     </parent>
9
     </parent>
10
     <modelVersion>4.0.0</modelVersion>
10
     <modelVersion>4.0.0</modelVersion>
11
     <artifactId>xxl-job-executor-sample-nutz</artifactId>
11
     <artifactId>xxl-job-executor-sample-nutz</artifactId>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-spring/pom.xml View File

4
 	<parent>
4
 	<parent>
5
 		<groupId>com.xuxueli</groupId>
5
 		<groupId>com.xuxueli</groupId>
6
 		<artifactId>xxl-job-executor-samples</artifactId>
6
 		<artifactId>xxl-job-executor-samples</artifactId>
7
-		<version>2.0.2-SNAPSHOT</version>
7
+		<version>2.0.2</version>
8
 	</parent>
8
 	</parent>
9
 	<artifactId>xxl-job-executor-sample-spring</artifactId>
9
 	<artifactId>xxl-job-executor-sample-spring</artifactId>
10
 	<packaging>war</packaging>
10
 	<packaging>war</packaging>

+ 1 - 1
xxl-job-executor-samples/xxl-job-executor-sample-springboot/pom.xml View File

6
     <parent>
6
     <parent>
7
         <groupId>com.xuxueli</groupId>
7
         <groupId>com.xuxueli</groupId>
8
         <artifactId>xxl-job-executor-samples</artifactId>
8
         <artifactId>xxl-job-executor-samples</artifactId>
9
-        <version>2.0.2-SNAPSHOT</version>
9
+        <version>2.0.2</version>
10
     </parent>
10
     </parent>
11
     <artifactId>xxl-job-executor-sample-springboot</artifactId>
11
     <artifactId>xxl-job-executor-sample-springboot</artifactId>
12
     <packaging>jar</packaging>
12
     <packaging>jar</packaging>