Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
熊鹏飞
/
xxljob220
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
468fecb9
authored
Jul 30, 2017
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
springboot版本执行器,升级至1.5.6.RELEASE版本;
parent
0ddef140
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
38 additions
and
44 deletions
doc/XXL-JOB官方文档.md
xxl-job-admin/pom.xml
xxl-job-core/pom.xml
xxl-job-executor-example/pom.xml
xxl-job-executor-springboot-example/pom.xml
doc/XXL-JOB官方文档.md
View file @
468fecb9
# 《分布
式任务调度平台XXL-JOB》
# 《分布
式任务调度平台XXL-JOB》
...
...
@@ -906,6 +906,7 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
7、新增调度中心API服务测试Demo,方便在调度中心API扩展和测试;
-
8、任务列表页交互优化,更换执行器分组时自动刷新任务列表,新建任务时默认定位在当前执行器位置;
-
9、访问令牌(accessToken):为提升系统安全性,调度中心和执行器进行安全性校验,双方AccessToken匹配才允许通讯;
-
10、springboot版本执行器,升级至1.5.6.RELEASE版本;
#### TODO LIST
-
1、任务权限管理:执行器为粒度分配权限,核心操作校验权限;
...
...
xxl-job-admin/pom.xml
View file @
468fecb9
...
...
@@ -10,7 +10,7 @@
<packaging>
war
</packaging>
<properties>
<spring.version>
3.2.1
7
.RELEASE
</spring.version>
<spring.version>
3.2.1
8
.RELEASE
</spring.version>
</properties>
<dependencies>
...
...
@@ -53,7 +53,7 @@
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-log4j12
</artifactId>
<version>
1.7.2
1
</version>
<version>
1.7.2
5
</version>
</dependency>
<!-- freemarker -->
...
...
xxl-job-core/pom.xml
View file @
468fecb9
...
...
@@ -14,7 +14,7 @@
<url>
http://www.xuxueli.com/
</url>
<properties>
<spring.version>
3.2.1
7
.RELEASE
</spring.version>
<spring.version>
3.2.1
8
.RELEASE
</spring.version>
</properties>
<dependencies>
...
...
@@ -34,14 +34,14 @@
<dependency>
<groupId>
org.eclipse.jetty
</groupId>
<artifactId>
jetty-server
</artifactId>
<version>
9.2.2
1.v20170120
</version>
<version>
9.2.2
2.v20170606
</version>
</dependency>
<!-- slf4j -->
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-api
</artifactId>
<version>
1.7.2
1
</version>
<version>
1.7.2
5
</version>
</dependency>
<!-- hessian -->
...
...
xxl-job-executor-example/pom.xml
View file @
468fecb9
...
...
@@ -14,11 +14,12 @@
<url>
http://www.xuxueli.com/
</url>
<properties>
<spring.version>
3.2.1
7
.RELEASE
</spring.version>
<spring.version>
3.2.1
8
.RELEASE
</spring.version>
</properties>
<dependencies>
<!-- springframe start -->
<!-- spring-webmvc -->
<dependency>
<groupId>
org.springframework
</groupId>
<artifactId>
spring-webmvc
</artifactId>
...
...
@@ -29,20 +30,7 @@
<dependency>
<groupId>
org.slf4j
</groupId>
<artifactId>
slf4j-log4j12
</artifactId>
<version>
1.7.21
</version>
</dependency>
<!-- c3p0 -->
<dependency>
<groupId>
com.mchange
</groupId>
<artifactId>
c3p0
</artifactId>
<version>
0.9.5.2
</version>
</dependency>
<!-- mysql-connector -->
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<version>
5.1.29
</version>
<version>
1.7.25
</version>
</dependency>
<!-- xxl-job-core -->
...
...
xxl-job-executor-springboot-example/pom.xml
View file @
468fecb9
...
...
@@ -16,11 +16,13 @@
<url>
http://www.xuxueli.com/
</url>
<properties>
<spring-boot.version>
1.
3.8
.RELEASE
</spring-boot.version>
<spring-boot.version>
1.
5.6
.RELEASE
</spring-boot.version>
<project.build.sourceEncoding>
UTF-8
</project.build.sourceEncoding>
<project.reporting.outputEncoding>
UTF-8
</project.reporting.outputEncoding>
<java.version>
1.7
</java.version>
<jetty.version>
9.2.22.v20170606
</jetty.version>
</properties>
<dependencyManagement>
...
...
@@ -33,41 +35,44 @@
<type>
pom
</type>
<scope>
import
</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<!-- jetty -->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter
</artifactId>
<groupId>
org.eclipse.jetty
</groupId>
<artifactId>
jetty-server
</artifactId>
<version>
${jetty.version}
</version>
</dependency>
<dependency>
<groupId>
org.eclipse.jetty
</groupId>
<artifactId>
jetty-util
</artifactId>
<version>
${jetty.version}
</version>
</dependency>
<dependency>
<groupId>
org.eclipse.jetty
</groupId>
<artifactId>
jetty-http
</artifactId>
<version>
${jetty.version}
</version>
</dependency>
<dependency>
<groupId>
org.eclipse.jetty
</groupId>
<artifactId>
jetty-io
</artifactId>
<version>
${jetty.version}
</version>
</dependency>
<!-- spring-boot-starter-web (提供了对web的支持,包含了spring webmvc和tomcat等web开发的特性) -->
</dependencies>
</dependencyManagement>
<dependencies>
<!-- spring-boot-starter-web (spring-webmvc + tomcat) -->
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-web
</artifactId>
</dependency>
<dependency>
<groupId>
org.springframework.boot
</groupId>
<artifactId>
spring-boot-starter-test
</artifactId>
<scope>
test
</scope>
</dependency>
<!-- c3p0 -->
<dependency>
<groupId>
com.mchange
</groupId>
<artifactId>
c3p0
</artifactId>
<version>
0.9.5.2
</version>
</dependency>
<!-- mysql-connector -->
<dependency>
<groupId>
mysql
</groupId>
<artifactId>
mysql-connector-java
</artifactId>
<version>
5.1.29
</version>
</dependency>
<!-- xxl-job-core -->
<dependency>
<groupId>
com.xuxueli
</groupId>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment