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
cafd8768
authored
Aug 16, 2018
by
xuxueli
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
新增任务运行模式 "GLUE模式(PHP) ",支持php脚本任务;
parent
862e281d
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
5 additions
and
4 deletions
doc/XXL-JOB官方文档.md
xxl-job-admin/src/main/webapp/static/plugins/codemirror/mode/php/php.js
xxl-job-core/src/main/java/com/xxl/job/core/glue/GlueTypeEnum.java
doc/XXL-JOB官方文档.md
View file @
cafd8768
## 《分
布式任务调度平台XXL-JOB》
## 《分
布式任务调度平台XXL-JOB》
...
@@ -1239,7 +1239,8 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
...
@@ -1239,7 +1239,8 @@ Tips: 历史版本(V1.3.x)目前已经Release至稳定版本, 进入维护阶段
-
20、调度全异步处理:任务触发之后,推送到调度队列,多线程并发处理调度请求,提高任务调度速率的同时,避免因网络问题导致quartz调度线程阻塞的问题;
-
20、调度全异步处理:任务触发之后,推送到调度队列,多线程并发处理调度请求,提高任务调度速率的同时,避免因网络问题导致quartz调度线程阻塞的问题;
-
21、新增左侧菜单"运行报表";
-
21、新增左侧菜单"运行报表";
-
22、告警邮件固定使用 UTF-8 编码格式,修复由机器编码导致的邮件乱码问题;
-
22、告警邮件固定使用 UTF-8 编码格式,修复由机器编码导致的邮件乱码问题;
-
22、
[
迭代中
]
任务失败重试优化:收敛并废弃现有失败重试策略,新增任务属性 "失败重试次数",支持自定义失败重试次数,任务失败时将会根据该值进行失败重试;
-
23、新增任务运行模式 "GLUE模式(PHP) ",支持php脚本任务;
-
24、
[
迭代中
]
任务失败重试优化:收敛并废弃现有失败重试策略,新增任务属性 "失败重试次数",支持自定义失败重试次数,任务失败时将会根据该值进行失败重试;
### TODO LIST
### TODO LIST
...
...
xxl-job-admin/src/main/webapp/static/plugins/codemirror/mode/php/php.js
100644 → 100755
View file @
cafd8768
...
@@ -151,7 +151,7 @@
...
@@ -151,7 +151,7 @@
};
};
CodeMirror
.
defineMode
(
"php"
,
function
(
config
,
parserConfig
)
{
CodeMirror
.
defineMode
(
"php"
,
function
(
config
,
parserConfig
)
{
var
htmlMode
=
CodeMirror
.
getMode
(
config
,
(
parserConfig
&&
parserConfig
.
htmlMode
)
||
"text/html"
);
var
htmlMode
=
CodeMirror
.
getMode
(
config
,
"text/html"
);
var
phpMode
=
CodeMirror
.
getMode
(
config
,
phpConfig
);
var
phpMode
=
CodeMirror
.
getMode
(
config
,
phpConfig
);
function
dispatch
(
stream
,
state
)
{
function
dispatch
(
stream
,
state
)
{
...
...
xxl-job-core/src/main/java/com/xxl/job/core/glue/GlueTypeEnum.java
View file @
cafd8768
...
@@ -9,7 +9,7 @@ public enum GlueTypeEnum {
...
@@ -9,7 +9,7 @@ public enum GlueTypeEnum {
GLUE_GROOVY
(
"GLUE(Java)"
,
false
,
null
,
null
),
GLUE_GROOVY
(
"GLUE(Java)"
,
false
,
null
,
null
),
GLUE_SHELL
(
"GLUE(Shell)"
,
true
,
"bash"
,
".sh"
),
GLUE_SHELL
(
"GLUE(Shell)"
,
true
,
"bash"
,
".sh"
),
GLUE_PYTHON
(
"GLUE(Python)"
,
true
,
"python"
,
".py"
),
GLUE_PYTHON
(
"GLUE(Python)"
,
true
,
"python"
,
".py"
),
GLUE_PHP
(
"GLUE
模式(Php
)"
,
true
,
"php"
,
".php"
),
GLUE_PHP
(
"GLUE
(PHP
)"
,
true
,
"php"
,
".php"
),
GLUE_NODEJS
(
"GLUE(Nodejs)"
,
true
,
"node"
,
".js"
);
GLUE_NODEJS
(
"GLUE(Nodejs)"
,
true
,
"node"
,
".js"
);
private
String
desc
;
private
String
desc
;
...
...
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