当前位置: 代码迷 >> Java Web开发 >> mysql+Quartz+spring 配置出错解决方案
  详细解决方案

mysql+Quartz+spring 配置出错解决方案

热度:695   发布时间:2016-04-16 21:42:00.0
mysql+Quartz+spring 配置出错
12张表都建好以后
在quartz.xml大致配置
<bean>
<property name="jobDetails">
<list>
<ref bean="selecttoBatch" />
</list>
...
</bean>
<bean id="selecttoBatch"
class=".....">
<property name="shouldRecover" value="true" />
<property name="durable" value="true" />
<property name="targetObject" ref="getcoreBatch" />
<property name="targetMethod" value="runBatch" />
</bean>
写好“getcoreBatch”对应的类
启动tomcat报错:
Unable to serialize JobDataMap for insertion into database because the value of property 'targetObject' is not serializable:
但是getcoreBatch对应的类已经实现,请问这哪还要修改?
注:这个配置之前在oralce上面批处理是可以跑的,在迁移到mysql后,我重新建表
------解决思路----------------------
类没有实现序列化接口
  相关解决方案