-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig-example.json
46 lines (46 loc) · 1.41 KB
/
config-example.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"jobs": [
{
"label": "Example for every 1 seconds",
"url": "http://localhost:8888/jobs/dummy.cfm",
"interval": 60,
"startAt": "2021-04-22",
"endAt": "2028-04-22",
"pause": false
},
{
"label": "every 2 seconds",
"component": "org.lucee.extension.quartz.example.SimpleJobExample",
"cron": "0/2 * * * * ?",
"pause": false
},
{
"label": "Every 5 seconds, every minute, every hour between 09am and 17pm, of every day",
"url": "/jobs/dummy.cfm",
"cron": "0/5 * 9-17 * * ?",
"pause": true
},
{
"label": "Every 5 seconds, every minute, every hour between 09am and 17pm, of every work day",
"url": "/jobs/dummy.cfm",
"cron": "0/5 * 9-17 ? * MON-FRI",
"pause": true
}
],
"listener": [
{
"component": "org.lucee.extension.quartz.ConsoleListener",
"stream": "err"
}
],
"store": {
"type": "jdbc",
"datasource": "test",
"tablePrefix": "QRTZ_",
"driver": "com.mysql.cj.jdbc.Driver",
"url": "jdbc:mysql://localhost:3307/test?characterEncoding=UTF-8&serverTimezone=GMT&maxReconnects=3",
"username": "root",
"password": "redBat73",
"maxConnections": 5
}
}