Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
pdstask
Project
Project
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
曲欣亮
pdstask
Commits
3a4e94ae
Commit
3a4e94ae
authored
Nov 09, 2020
by
Quxl
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
x
parent
e676dd19
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
26 additions
and
5 deletions
+26
-5
ScheduleConfig.java
src/main/java/com/egolm/pds/config/ScheduleConfig.java
+24
-0
ProductsTask.java
src/main/java/com/egolm/pds/schedule/ProductsTask.java
+2
-5
No files found.
src/main/java/com/egolm/pds/config/ScheduleConfig.java
0 → 100644
View file @
3a4e94ae
package
com
.
egolm
.
pds
.
config
;
import
java.util.concurrent.ScheduledThreadPoolExecutor
;
import
java.util.concurrent.ThreadFactory
;
import
org.springframework.context.annotation.Configuration
;
import
org.springframework.scheduling.annotation.SchedulingConfigurer
;
import
org.springframework.scheduling.config.ScheduledTaskRegistrar
;
@Configuration
public
class
ScheduleConfig
implements
SchedulingConfigurer
{
public
void
configureTasks
(
ScheduledTaskRegistrar
scheduledTaskRegistrar
)
{
scheduledTaskRegistrar
.
setScheduler
(
new
ScheduledThreadPoolExecutor
(
Runtime
.
getRuntime
().
availableProcessors
(),
new
ThreadFactory
()
{
public
Thread
newThread
(
Runnable
r
)
{
return
new
Thread
(
r
,
"my-schedule"
);
}
}));
}
}
src/main/java/com/egolm/pds/schedule/ProductsTask.java
View file @
3a4e94ae
...
@@ -49,15 +49,12 @@ public class ProductsTask {
...
@@ -49,15 +49,12 @@ public class ProductsTask {
private
void
executeUpdateTask
()
{
private
void
executeUpdateTask
()
{
Map
<
String
,
String
>
headers
=
new
HashMap
<
String
,
String
>();
Map
<
String
,
String
>
headers
=
new
HashMap
<
String
,
String
>();
headers
.
put
(
authKey
,
authValue
);
headers
.
put
(
authKey
,
authValue
);
while
(
true
)
{
boolean
isFinishd
=
false
;
while
(!
isFinishd
)
{
String
responseBody
=
HttpUtil
.
get
(
urlQuery
,
headers
);
String
responseBody
=
HttpUtil
.
get
(
urlQuery
,
headers
);
JSONObject
jsonObject
=
JSON
.
parseObject
(
responseBody
);
JSONObject
jsonObject
=
JSON
.
parseObject
(
responseBody
);
JSONArray
jsonArray
=
jsonObject
.
getJSONArray
(
"data"
);
JSONArray
jsonArray
=
jsonObject
.
getJSONArray
(
"data"
);
if
(
jsonArray
==
null
||
jsonArray
.
size
()
==
0
)
{
if
(
jsonArray
==
null
||
jsonArray
.
size
()
==
0
)
{
isFinishd
=
true
;
break
;
}
else
{
}
else
{
for
(
int
i
=
0
;
i
<
jsonArray
.
size
();
i
++)
{
for
(
int
i
=
0
;
i
<
jsonArray
.
size
();
i
++)
{
JSONObject
productJsonObject
=
jsonArray
.
getJSONObject
(
i
);
JSONObject
productJsonObject
=
jsonArray
.
getJSONObject
(
i
);
...
...
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