| Author |
send email using spring + Quartz Scheduler
|
qadeer alvi
Greenhorn
Joined: Nov 30, 2007
Posts: 6
|
|
Hi, I am trying to send email using Quartz Scheduler. I got error class not found(org.springframework.scheduling.quartz.JobDetailBean). I will be great great thankful if any one help me. In spring configuration file I write the code. <bean id="reportJob" class="org.springframework.scheduling.quartz.JobDetailBean"> <property name="jobClass" value="no.naks.studies.dao.EmailScheduler"/> <property name="jobDataAsMap"> <map> <entry key="emailDAO"> <ref bean="emailDAO" /> </entry> </map> </property> </bean> <bean id="cronReportTrigger" class="org.springframework.scheduling.quartz.CronTriggerBean"> <property name="jobDetail" ref="reportJob" > </property> <property name="cronExpression"> <value>0 35 13 * * ?</value> </property> </bean> <bean class="org.springframework.scheduling.quartz.SchedulerFactoryBean"> <property name="triggers"> <list> <ref bean="cronReportTrigger" /> </list> </property> </bean>
|
 |
Joachim Rohde
Ranch Hand
Joined: Nov 27, 2006
Posts: 423
|
|
|
Have you checked if the quartz.jar is in your classpath?
|
 |
 |
|
|
subject: send email using spring + Quartz Scheduler
|
|
|