Hello snicoll
Thanks again for the reply
I thought the same approach before, but in this way arise an obvious questionCode:public class MyConcept {
private CustomerAccount firstAccount;
private CustomerAccount secondAccount;
private CustomerAccount thirdAccount;
...
}
How I can save/insert each CustomerAccount in a batch approach?
The SB's "writer" expects a single object that represent a single record to be inserted
Thats why I have chosen the List<CustomerAccount> approach to let me re use the jdbcTemplate.batchUpdate where it expects a list
Even more, If my customer created a new Currency (Real - from Brasil) I must update or add
Where a List<CustomerAccount> fit better.Code:private CustomerAccount fourthAccount;
Seems I am missing something obvious about to "write" working with your approach.Quote:
And you write a "MyConcept" and not a list of 3 accounts
AgreeQuote:
That way your metadata are correct.
Thanks for your time
