在实现Quartz 2时,我注意到最新版本是2.25.4。但是,最新的Quartz版本是3.7.4。quartz2怎么会在比石英更老的驼峰内核上呢?
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-quartz</artifactId>
<version>3.7.4</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-quartz2</artifactId>
<version>2.25.4</version>
<scope>test</scope>
</dependency>发布于 2021-06-25 17:36:24
请参阅Camel3.0升级指南,其中v2组件已重命名。
在CamelQuartz2中,有一个旧版本的quartz v1,后来发布了quartz v2,然后我们不得不为它创建一个新的Camel组件,例如camel-quartz2。
在驼峰3中,我们丢弃了许多非常旧的组件,例如,石英v1被丢弃了。然后将组件重命名为"normal“名称。
发布于 2021-07-14 11:51:02
那么我们能不能用最新的版本代替quartz2到quartz呢?
https://stackoverflow.com/questions/68116938
复制相似问题