Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
manager
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
reyun
manager
Commits
3119ff4e
Commit
3119ff4e
authored
7 years ago
by
manxiaoqiang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
定时任务
parent
1695457b
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
1 deletion
+12
-1
workspace.xml
.idea/workspace.xml
+0
-0
AccountTask.java
src/main/java/tkio/task/AccountTask.java
+11
-0
applicationContext-schedule.xml
src/main/resources/spring/applicationContext-schedule.xml
+1
-1
No files found.
.idea/workspace.xml
View file @
3119ff4e
This diff is collapsed.
Click to expand it.
src/main/java/tkio/task/AccountTask.java
View file @
3119ff4e
...
...
@@ -2,6 +2,9 @@ package tkio.task;
import
common.model.Account4Web
;
import
common.repository.Account4WebRepository
;
import
common.task.SyncAppDataTask
;
import
org.slf4j.Logger
;
import
org.slf4j.LoggerFactory
;
import
org.springframework.beans.factory.annotation.Autowired
;
import
tkio.model.Account
;
import
tkio.model.AccountRestrict4Web
;
...
...
@@ -23,6 +26,7 @@ import java.util.Map;
* Created by mxq on 2017/12/25.
*/
public
class
AccountTask
{
private
static
Logger
logger
=
LoggerFactory
.
getLogger
(
AccountTask
.
class
);
@Autowired
AccountRepository
accountRepository
;
...
...
@@ -40,6 +44,7 @@ public class AccountTask {
SalesManLeaderRepository
salesManLeaderRepository
;
public
void
task
(){
logger
.
info
(
"tkio task start :"
+
System
.
currentTimeMillis
());
//清空前一天数据
account4WebRepository
.
deleteAll
();
List
<
Account4Web
>
list
=
new
ArrayList
<>();
...
...
@@ -47,6 +52,7 @@ public class AccountTask {
List
<
Account
>
accountValidList
=
accountRepository
.
findRootParentsUnPast
(
DateUtil
.
getBeforeDays
(
1
));
if
(
ValidateUtil
.
isValid
(
accountValidList
)){
for
(
Account
ac
:
accountValidList
){
try
{
AccountRestrict4Web
restrict4Web
=
accountFlowRestrictService
.
findRestrictByAccount
(
ac
.
getId
());
Account4Web
account4Web
=
new
Account4Web
();
account4Web
.
setAccountId
(
ac
.
getId
());
...
...
@@ -85,6 +91,10 @@ public class AccountTask {
account4Web
.
setTell
(
ac
.
getPhone
());
account4Web
.
setBussinessMan
(
ac
.
getBussinessman
());
list
.
add
(
account4Web
);
}
catch
(
Exception
e
){
logger
.
error
(
"tkio task error :"
+
ac
.
getEmail
());
}
}
}
//已过期的直接设置成过期
...
...
@@ -113,5 +123,6 @@ public class AccountTask {
}
}
account4WebRepository
.
save
(
list
);
logger
.
info
(
"tkio task end :"
+
System
.
currentTimeMillis
());
}
}
This diff is collapsed.
Click to expand it.
src/main/resources/spring/applicationContext-schedule.xml
View file @
3119ff4e
...
...
@@ -12,7 +12,7 @@
<bean
id=
"tkioAccountTask"
class=
"tkio.task.AccountTask"
></bean>
<task:scheduled-tasks>
<!--//定时同步短链数据(每5分钟执行一次)-->
<task:scheduled
ref=
"tkioAccountTask"
method=
"task"
cron=
"0
22
2 * * ?"
/>
<task:scheduled
ref=
"tkioAccountTask"
method=
"task"
cron=
"0
38
2 * * ?"
/>
</task:scheduled-tasks>
<bean
id=
"tkioNoticeTask"
class=
"tkio.task.NoticeTask"
></bean>
...
...
This diff is collapsed.
Click to expand it.
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