本文介紹了Spring Batch FlatFileItemReader繼續(xù)使用錯(cuò)誤數(shù)量的令牌的處理方法,對大家解決問題具有一定的參考價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我使用Spring BatchFlatFileItemReader
解析CSV文件。每隔一段時(shí)間,我就會收到格式錯(cuò)誤的行,應(yīng)用程序完全崩潰,并顯示:
Caused by: org.springframework.batch.item.file.transform.IncorrectTokenCountException: Incorrect number of tokens found in record: expected 11 actual 18
有沒有辦法告訴FlatFileItemReader
在不完全退出應(yīng)用程序的情況下繼續(xù)(拋出異常并繼續(xù)或忽略并繼續(xù))。
我猜我可能需要擴(kuò)展FlatFileItemReader才能實(shí)現(xiàn)這一點(diǎn),因?yàn)樗坪鯖]有對此進(jìn)行任何設(shè)置。對于如何最好地繼續(xù)并實(shí)現(xiàn)這一點(diǎn),有什么建議嗎?
推薦答案
我能夠通過創(chuàng)建擴(kuò)展注入FlatFileItemReader
的DefaultLineMapper
的類來解決此問題。
然后我重寫了mapLine方法,如下所示:
@Override
public T mapLine(String line, int lineNumber) throws Exception {
T t = null;
try {
t = super.mapLine(line, lineNumber);
} catch (Exception e) {
log.error("Unable to parse line number <<{}>> with line <<{}>>.", lineNumber, line);
}
return t;
}
這篇關(guān)于Spring Batch FlatFileItemReader繼續(xù)使用錯(cuò)誤數(shù)量的令牌的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,