-
Type:
Enhancement
-
Status: Closed
-
Priority:
Major
-
Resolution: Done
-
Affects Version/s: jboss-fuse-6.3
-
Fix Version/s: jboss-fuse-6.3
-
Component/s: Fuse EAP, WildFly Camel
-
Labels:None
It is not possible to create scheduler factory with Quartz2 component. We need some classes from spring-context-support bundle, e.g. org.springframework.scheduling.quartz.SchedulerFactoryBean.
Use case: http://www.mkyong.com/spring/spring-quartz-scheduler-example/
I tried to add the following EAP module and it works with it:
<?xml version="1.0" encoding="UTF-8"?> |
<module xmlns="urn:jboss:module:1.1" name="org.springframework.context-support"> |
<properties> |
<property name="jboss.api" value="private" /> |
</properties> |
<resources> |
<resource-root path="spring-context-support-4.1.9.RELEASE.jar" /> |
</resources> |
<dependencies> |
<module name="javax.api" /> |
<module name="org.apache.commons.logging" /> |
<module name="org.springframework.core" /> |
<module name="org.springframework.beans" /> |
<module name="org.springframework.context" /> |
<module name="org.springframework.tx" /> |
<module name="org.springframework.jdbc" /> |
<module name="org.quartz" /> |
</dependencies> |
</module> |
CrossRef: https://github.com/wildfly-extras/wildfly-camel/issues/1138