org.quartz.JobPersistenceException: Couldn't acquire next trigger: Couldn't retrieve trigger: null
[Seenested exception: org.quartz.JobPersistenceException: Couldn't retrieve trigger: null
[See nestedexception: java.io.EOFException]]
這個錯是因為jobdataMap的數據轉化成blob字段時出錯,
在quartz的文檔中有推薦說jobdatamap都用string,可以避免此類錯誤
要做到限制全是string必須在quartz.properties中把org.quartz.jobStore.useProperties設成true
同時別忘了加對應數據庫的org.quartz.jobStore.driverDelegateClass
//我的就是按照上面說的在quart.properties文件中加上
org.quartz.jobStore.useProperties = true后解決的問題
posted on 2012-03-05 09:50
Ke 閱讀(15281)
評論(0) 編輯 收藏 所屬分類:
quartz