Couldn't store job: Unable to serialize JobDataMap for insertion into database because the value of property 'FTPINFO' is not serializable
在配置文件中使用org.quartz.jobStore.class = org.quartz.simpl.RAMJobStore做为配置参数时,一切正常,但当切换至
org.quartz.jobStore.class = org.quartz.impl.jdbcjobstore.JobStoreTX
数据库模式时,提示上面错误,FTPINFO这个是保存配置信息的一个class
原FtpInfo的声名:
public class FtpInfo {
修正为public class FtpInfo implements Serializable{
/**
*
*/
private static final long serialVersionUID = 1L;
致于为什么要实现Serializable,没有去查。
阅读(10960) | 评论(0) | 转发(0) |