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
a368c707
authored
May 19, 2016
by
xueli.xue
Browse files
Options
_('Browse Files')
Download
Email Patches
Plain Diff
UI优化
parent
510b397c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
3 deletions
xxl-job-admin/src/main/webapp/WEB-INF/template/jobcode/index.ftl
xxl-job-client/src/main/java/com/xxl/job/client/handler/HandlerRepository.java
xxl-job-admin/src/main/webapp/WEB-INF/template/jobcode/index.ftl
View file @
a368c707
...
...
@@ -94,20 +94,35 @@
<textarea
id=
"demoCode"
style=
"display:none;"
>
package com.xxl.job.service.handler;
import java.util.concurrent.TimeUnit;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.stereotype.Service;
import com.xxl.job.client.handler.IJobHandler;
import com.xxl.job.client.handler.IJobHandler.JobHandleStatus;
import com.xxl.job.client.handler.annotation.JobHander;
public class DemoJobHandler extends IJobHandler {
private static transient Logger logger = LoggerFactory.getLogger(DemoJobHandler.class);
@Override
public JobHandleStatus handle(String... params) throws Exception {
logger.info("demo run success...");
for (int i = 0; i
<
5
;
i
++)
{
TimeUnit
.
SECONDS
.
sleep
(
1
);
logger
.
info
("
handler
run:
{}",
i
);
}
return
JobHandleStatus
.
SUCCESS
;
}
public
static
void
main
(
String
[]
args
)
{
System
.
out
.
println
(
DemoJobHandler
.
class
.
getName
());
System
.
out
.
println
(
DemoJobHandler
.
class
);
}
}
</
textarea
>
<
@
netCommon
.
comAlert
/>
...
...
xxl-job-client/src/main/java/com/xxl/job/client/handler/HandlerRepository.java
View file @
a368c707
...
...
@@ -46,7 +46,7 @@ public class HandlerRepository {
// handler push to queue
public
static
String
service
(
Map
<
String
,
String
>
_param
)
{
logger
.
info
(
">>>>>>>>>>> xxl-job service start, _param:{}"
,
new
Object
[]{
_param
});
logger
.
debug
(
">>>>>>>>>>> xxl-job service start, _param:{}"
,
new
Object
[]{
_param
});
// callback
RemoteCallBack
callback
=
new
RemoteCallBack
();
...
...
@@ -152,7 +152,7 @@ public class HandlerRepository {
return
JacksonUtil
.
writeValueAsString
(
callback
);
}
logger
.
info
(
">>>>>>>>>>> xxl-job service end, triggerData:{}"
);
logger
.
debug
(
">>>>>>>>>>> xxl-job service end, triggerData:{}"
);
return
JacksonUtil
.
writeValueAsString
(
callback
);
}
...
...
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