使用Spring + quartz集群持久化时注意事项

来源:互联网 发布:matlab怎么调用caffe 编辑:程序博客网 时间:2024/06/07 06:02
1、持久化时未序列化异常

java.io.NotSerializableException: Unable to serialize JobDataMap for insertion into database because the value of property 'methodInvoker' is not serializable: org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean

例如:

[html] view plain copy
  1. <bean id="studyDetail"    
  2.     class="org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean">    
  3.     <property name="targetObject">    
  4.         <ref bean="studyJob" />    
  5.     </property>    
  6.     <property name="targetMethod">    
  7.         <value>doSth</value>    
  8.     </property>    
  9. </bean>   


原因请看org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean

[html] view plain copy
  1. NOTE: JobDetails created via this FactoryBean are not serializable and thus not suitable for persistent job stores. You need to implement your own Quartz Job as a thin wrapper for each case where you want a persistent job to delegate to a specific service method.  
  2.   
  3. Compatible with Quartz 1.5+ as well as Quartz 2.0-2.2, as of Spring 3.2.  

所以对于持久化的job需要自己继承org.springframework.scheduling.quartz.QuartzJobBean,同时修改JobDetailFactoryBean为

[html] view plain copy
  1. <bean id="studyDetail"  
  2.     class="org.springframework.scheduling.quartz.JobDetailFactoryBean">  
  3.     <property name="jobClass">  
  4.         <value>com.joshua.job.StudyJob</value>  
  5.     </property>  
  6.     <property name="name" value="studyDetail"></property>  
  7.     <property name="durability" value="true" />  
  8. </bean>   

2.持久化时jobDetail找不到

[java] view plain copy
  1. org.quartz.JobPersistenceException: The job (DEFAULT.studyDetail) referenced by the trigger does not exist.  

原因一般是数据源配置导致的问题。

可能的原因是:数据源未配置成自动提交,当第一次启动trigger时,之前对数据库的job的增加的事物没有自动提交,导致后面的事物无法查询到。

如果数据源是通过dbcp配置的将自动提交配置为true

[html] view plain copy
  1. <property name="defaultAutoCommit" value="false" />  
如果是c3p0配置为autoCommitOnClose=true