-
Notifications
You must be signed in to change notification settings - Fork 4
添加quartz使用指南 #24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
添加quartz使用指南 #24
Conversation
Quartz/2.5.1/README.md
Outdated
|
||
Quartz 是 Java 领域强大的开源作业调度框架。 | ||
|
||
官方开发指南参考:[https://www.quartz-scheduler.org/documentation/quartz-2.3.0/](https://www.quartz-scheduler.org/documentation/quartz-2.3.0/) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2.5.1 or 2.3.0?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The latest document version is 2.3.0.
Quartz/2.5.1/README.md
Outdated
<dependency> | ||
<groupId>org.quartz-scheduler</groupId> | ||
<artifactId>quartz</artifactId> | ||
<version>2.5.1-SNAPSHOT</version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do not use snapshot
Quartz/2.5.1/README.md
Outdated
``` | ||
|
||
### 运行建表语句 | ||
使用Postgresql的建表语句即可,在源码中也可以获取。 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you contribute this file to quartz and develope org.quartz.impl.jdbcjobstore.GaussDBDelegate?
|
||
# 作业存储配置 | ||
org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX | ||
org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.GaussDBDelegate |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
2.5.0没有这个类,需要等待相关扩展包发布后合并这个文档。
使用GaussDB的建表语句,在源码中也可以获取。 | ||
```xml | ||
-- Thanks to Patrick Lightbody for submitting this... | ||
-- | ||
-- In your Quartz properties file, you'll need to set | ||
-- org.quartz.jobStore.driverDelegateClass = org.quartz.impl.jdbcjobstore.GaussDBDelegate | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
等待2.5.0扩展包发布后,给出链接。无需这里提供代码。
添加quartz使用指南