Quellcode durchsuchen

升级快照版本:v1.7.2

xueli.xue vor 8 Jahren
Ursprung
Commit
7b8b24aacd
6 geänderte Dateien mit 18 neuen und 16 gelöschten Zeilen
  1. 10 8
      README.md
  2. 1 1
      pom.xml
  3. 2 2
      xxl-job-admin/pom.xml
  4. 1 1
      xxl-job-core/pom.xml
  5. 2 2
      xxl-job-executor-example/pom.xml
  6. 2 2
      xxl-job-executor-springboot-example/pom.xml

+ 10 - 8
README.md Datei anzeigen

814
 - 5、执行器移除GlueLoader依赖,改为推送方式实现,从而GLUE源码加载不再依赖JDBC;
814
 - 5、执行器移除GlueLoader依赖,改为推送方式实现,从而GLUE源码加载不再依赖JDBC;
815
 - 6、登录拦截Redirect时获取项目名,解决非根据目录发布时跳转404问题;
815
 - 6、登录拦截Redirect时获取项目名,解决非根据目录发布时跳转404问题;
816
 
816
 
817
-#### 6.15 版本 V1.7.1 特性(Coding)
817
+#### 6.15 版本 V1.7.1 特性
818
 - 1、运行日志读写编码统一为UTF-8,解决windows环境下日志乱码问题;
818
 - 1、运行日志读写编码统一为UTF-8,解决windows环境下日志乱码问题;
819
 - 2、通讯超时时间限定为10s,避免异常情况下调度线程占用;
819
 - 2、通讯超时时间限定为10s,避免异常情况下调度线程占用;
820
 - 3、执行器,server启动、销毁和注册逻辑调整;
820
 - 3、执行器,server启动、销毁和注册逻辑调整;
824
 - 7、弹框组件统一替换为layer;
824
 - 7、弹框组件统一替换为layer;
825
 - 8、升级quartz版本至2.3.0;
825
 - 8、升级quartz版本至2.3.0;
826
 
826
 
827
-#### TODO LIST
827
+#### 6.15 版本 V1.7.2 特性(Coding)
828
 - 1、任务并行触发处理规则:单机串行队列(默认)、单机并行、串行忽略、单机覆盖;
828
 - 1、任务并行触发处理规则:单机串行队列(默认)、单机并行、串行忽略、单机覆盖;
829
-- 2、任务权限管理;
830
-- 3、调度失败重试机制;
831
-- 4、执行器与数据库解耦,只需配置调度中心集群地址即可(与当前通过JDBC注册自动发现方式,相冲突,待考虑);
832
-- 5、任务分片:一个任务被拆分成N个独立的任务单元,然后由分布式部署的执行器分别执行某一个或几个分片单元;
833
-- 6、任务分片路由:分片采用一致性Hash算法计算出尽量稳定的分片顺序,即使注册机器存在波动也不会引起分批分片顺序大的波动;
834
-- 7、调度中心提供API供执行器回调和注册,取消调度中心内部jetty;
829
+- 2、调度失败重试机制;
830
+
831
+#### TODO LIST
832
+- 1、任务权限管理;
833
+- 2、执行器与数据库解耦,只需配置调度中心集群地址即可(与当前通过JDBC注册自动发现方式,相冲突,待考虑),调度中心提供API供执行器回调和注册,取消调度中心内部jetty;
834
+- 3、任务分片:一个任务被拆分成N个独立的任务单元,然后由分布式部署的执行器分别执行某一个或几个分片单元;
835
+- 4、任务分片路由:分片采用一致性Hash算法计算出尽量稳定的分片顺序,即使注册机器存在波动也不会引起分批分片顺序大的波动;
836
+
835
 
837
 
836
 
838
 
837
 ## 七、其他
839
 ## 七、其他

+ 1 - 1
pom.xml Datei anzeigen

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>1.7.1</version>
6
+	<version>1.7.2-SNAPSHOT</version>
7
 	<packaging>pom</packaging>
7
 	<packaging>pom</packaging>
8
 
8
 
9
 	<name>xxl-job</name>
9
 	<name>xxl-job</name>

+ 2 - 2
xxl-job-admin/pom.xml Datei anzeigen

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>1.7.1</version>
7
+		<version>1.7.2-SNAPSHOT</version>
8
 	</parent>
8
 	</parent>
9
 	<artifactId>xxl-job-admin</artifactId>
9
 	<artifactId>xxl-job-admin</artifactId>
10
 	<packaging>war</packaging>
10
 	<packaging>war</packaging>
11
 
11
 
12
 	<properties>
12
 	<properties>
13
-		<xxl-job.version>1.7.1</xxl-job.version>
13
+		<xxl-job.version>1.7.2-SNAPSHOT</xxl-job.version>
14
 		<spring.version>3.2.17.RELEASE</spring.version>
14
 		<spring.version>3.2.17.RELEASE</spring.version>
15
 	</properties>
15
 	</properties>
16
 
16
 

+ 1 - 1
xxl-job-core/pom.xml Datei anzeigen

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>1.7.1</version>
7
+		<version>1.7.2-SNAPSHOT</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>

+ 2 - 2
xxl-job-executor-example/pom.xml Datei anzeigen

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>1.7.1</version>
7
+		<version>1.7.2-SNAPSHOT</version>
8
 	</parent>
8
 	</parent>
9
 	<artifactId>xxl-job-executor-example</artifactId>
9
 	<artifactId>xxl-job-executor-example</artifactId>
10
 	<packaging>war</packaging>
10
 	<packaging>war</packaging>
11
 
11
 
12
 	<properties>
12
 	<properties>
13
-		<xxl-job.version>1.7.1</xxl-job.version>
13
+		<xxl-job.version>1.7.2-SNAPSHOT</xxl-job.version>
14
 		<spring.version>3.2.17.RELEASE</spring.version>
14
 		<spring.version>3.2.17.RELEASE</spring.version>
15
 	</properties>
15
 	</properties>
16
 
16
 

+ 2 - 2
xxl-job-executor-springboot-example/pom.xml Datei anzeigen

6
     <parent>
6
     <parent>
7
         <groupId>com.xuxueli</groupId>
7
         <groupId>com.xuxueli</groupId>
8
         <artifactId>xxl-job</artifactId>
8
         <artifactId>xxl-job</artifactId>
9
-        <version>1.7.1</version>
9
+        <version>1.7.2-SNAPSHOT</version>
10
     </parent>
10
     </parent>
11
     <artifactId>xxl-job-executor-springboot-example</artifactId>
11
     <artifactId>xxl-job-executor-springboot-example</artifactId>
12
     <packaging>jar</packaging>
12
     <packaging>jar</packaging>
14
     <description>Example executor project for spring boot</description>
14
     <description>Example executor project for spring boot</description>
15
 
15
 
16
     <properties>
16
     <properties>
17
-        <xxl-job.version>1.7.1</xxl-job.version>
17
+        <xxl-job.version>1.7.2-SNAPSHOT</xxl-job.version>
18
         <spring-boot.version>1.3.8.RELEASE</spring-boot.version>
18
         <spring-boot.version>1.3.8.RELEASE</spring-boot.version>
19
 
19
 
20
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
20
         <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>