本文介紹了Spring Batch如何作為Reader讀取多個表(查詢)并將其作為平面文件寫入的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
在我的項目中,我讀取了具有不同查詢的多個表,并將這些結果集合并到平面文件中。我怎樣才能做到這一點。我的意思是JdbcReader直接接受1個SELECT查詢,我如何自定義它。
推薦答案
如果JdbcCursorItemReader不符合您的需要,您始終可以通過實現ItemReader接口自由實現自定義讀取器。
public interface ItemReader<T> {
T read() throws Exception, UnexpectedInputException, ParseException;
}
只需編寫實現此接口的類并插入jdbcTemplate即可查詢多個表。
public Class MyCompositeJdbcReader implements ItemReader<ConsolidateResult>{
private JdbcTemplate jdbcTemplate;
public ConsolidateResult read()
throws Exception, UnexpectedInputException, ParseException{
ConsolidateResult cr = new ConsolidateResult();
String name= this.jdbcTemplate.queryForObject(
"select name from customer where id = ?",new Object[]{1}, String.class);
String phoneNumber= this.jdbcTemplate.queryForObject(
"select phone from customer_contact where custid = ?",
new Object[]{1},String.class);
cr.setName(name);
cr.setPhone(phoneNumber);
return cr;
}
}
我沒有編譯代碼,但我希望它能提供一些啟示。
這篇關于Spring Batch如何作為Reader讀取多個表(查詢)并將其作為平面文件寫入的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,