本文介紹了春季重試閱讀器的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我已經編寫了一個Spring批處理應用程序,而項閱讀器拋出了異常。
如何重試項目閱讀器?
我已經添加了
@EnableRetry
在應用程序類上,下面是閱讀器代碼
@Bean
@Retryable(include = { RuntimeException.class }, maxAttempts = 1000, backoff = @Backoff(delay = 0))
public ItemReader<Student> reader() {
return new InMemoryStudentReader();
}
下面是Reader類
public class InMemoryStudentReader implements ItemReader<Student> {
@Autowired
private JdbcTemplate jdbcTemplate;
private int nextStudentIndex;
private List<Student> studentData;
public InMemoryStudentReader() {
initialize();
}
private void initialize() {
Student s1 = new Student(1, "ABC");
Student s2 = new Student(2, "DEF");
Student s3 = new Student(3, "GHI");
studentData = Collections.unmodifiableList(Arrays.asList(s1, s2,s3));
nextStudentIndex = 0;
}
@Override
public Student read() throws Exception {
Student nextStudent = null;
if (nextStudentIndex < studentData.size()) {
int a =jdbcTemplate.queryForObject("SELECT id FROM val LIMIT 1", Integer.class);
if(a == 2) {
throw new RuntimeException("Exception");
}
nextStudent = studentData.get(nextStudentIndex);
nextStudentIndex++;
} else {
nextStudentIndex = 0;
}
return nextStudent;
}
}
但即使在此之后,也不會重試讀取器,作業失敗
推薦答案
您正在Bean定義方法上添加@Retryable
。此方法僅在配置時由Spring調用以創建Bean的實例,并且不太可能失敗。
您應該在讀取器的read
方法上添加批注,該方法在步驟運行時調用,可能會引發異常:
@Override
@Retryable(include = { RuntimeException.class }, maxAttempts = 1000, backoff = @Backoff(delay = 0))
public Student read() throws Exception {
...
}
這篇關于春季重試閱讀器的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,