Showing
12 changed files
with
4 additions
and
43 deletions
.gitignore
0 → 100644
target/classes/application.yml
deleted
100644 → 0
| 1 | -spring: | ||
| 2 | - application: | ||
| 3 | - name: iot-scheduler | ||
| 4 | - main: | ||
| 5 | - banner-mode: off | ||
| 6 | - | ||
| 7 | -server: | ||
| 8 | - port: 8080 | ||
| 9 | - | ||
| 10 | -logging: | ||
| 11 | - level: | ||
| 12 | - root: INFO | ||
| 13 | - com.iot.scheduler: DEBUG | ||
| 14 | - | ||
| 15 | -# Scheduler Configuration (Cron Expressions) | ||
| 16 | -# Format: sec min hour day month day-of-week | ||
| 17 | -scheduler: | ||
| 18 | - huaining: | ||
| 19 | - pull: "0 0/5 * * * ?" # Every 5 minutes | ||
| 20 | - push: "0 0/10 * * * ?" # Every 10 minutes | ||
| 21 | - chizhou: | ||
| 22 | - pull: "0 0/5 * * * ?" | ||
| 23 | - push: "0 0/10 * * * ?" | ||
| 24 | - panji: | ||
| 25 | - pull: "0 0/5 * * * ?" | ||
| 26 | - push: "0 0/10 * * * ?" |
target/classes/com/iot/scheduler/IotSchedulerApplication.class
deleted
100644 → 0
No preview for this file type
target/classes/com/iot/scheduler/config/SchedulerConfig.class
deleted
100644 → 0
No preview for this file type
target/classes/com/iot/scheduler/controller/HealthController.class
deleted
100644 → 0
No preview for this file type
target/classes/com/iot/scheduler/task/AbstractZoneScheduler.class
deleted
100644 → 0
No preview for this file type
target/classes/com/iot/scheduler/zone/ChizhouZoneScheduler.class
deleted
100644 → 0
No preview for this file type
target/iot-scheduler-0.0.1-SNAPSHOT.jar
deleted
100644 → 0
No preview for this file type
target/iot-scheduler-0.0.1-SNAPSHOT.jar.original
deleted
100644 → 0
No preview for this file type
target/maven-archiver/pom.properties
deleted
100644 → 0
target/maven-status/maven-compiler-plugin/compile/default-compile/createdFiles.lst
deleted
100644 → 0
| 1 | -com\iot\scheduler\config\SchedulerConfig.class | ||
| 2 | -com\iot\scheduler\zone\HuainingZoneScheduler.class | ||
| 3 | -com\iot\scheduler\task\AbstractZoneScheduler.class | ||
| 4 | -com\iot\scheduler\zone\ChizhouZoneScheduler.class | ||
| 5 | -com\iot\scheduler\zone\PanjiZoneScheduler.class | ||
| 6 | -com\iot\scheduler\IotSchedulerApplication.class | ||
| 7 | -com\iot\scheduler\controller\HealthController.class |
| 1 | -E:\Project\iot-scheduler\src\main\java\com\iot\scheduler\zone\HuainingZoneScheduler.java | ||
| 2 | -E:\Project\iot-scheduler\src\main\java\com\iot\scheduler\zone\PanjiZoneScheduler.java | ||
| 3 | -E:\Project\iot-scheduler\src\main\java\com\iot\scheduler\controller\HealthController.java | ||
| 4 | -E:\Project\iot-scheduler\src\main\java\com\iot\scheduler\IotSchedulerApplication.java | ||
| 5 | -E:\Project\iot-scheduler\src\main\java\com\iot\scheduler\task\AbstractZoneScheduler.java | ||
| 6 | -E:\Project\iot-scheduler\src\main\java\com\iot\scheduler\config\SchedulerConfig.java | ||
| 7 | -E:\Project\iot-scheduler\src\main\java\com\iot\scheduler\zone\ChizhouZoneScheduler.java |