Programming

Spring Batch Tutorial: Writing Information to a Database With JDBC

My Spring Batch tutorial has taught us to read the input data of our batch job from different data sources. However, our batch jobs aren't very useful because we don't know how we can save the data that is read from these data sources. It's time to take the next step and learn how we […] Read more

The 30% Discount of My Test With Spring Course Ends Soon

I have almost finished the starter package of my long awaited Test With Spring course. This means that the 30% discount of my Test With Spring course ends next Monday (26th of September, 2016 at 23.59.59 EEST). In other words, I will release the starter package next Monday. After I have released it, the discount […] Read more

Save Time by Writing Less Test Code

About eight months I ago I wrote a blog post that asked one question: What prevents you from writing automated tests? The answers of my survey were not a surprise to me because I had struggled to solve the same problems in the past. The top four obstacles were: We have no time to write […] Read more

Spring Batch Tutorial: Writing Information to a CSV File

The previous parts of this tutorial have taught you to read the input data of your batch job from different data sources. However, your batch job isn't very useful because you don’t know how you can save the output data of your batch job. This time you will learn to write the output data of […] Read more

Spring Batch Tutorial: Reading Information From an Excel File

It is pretty easy to create a Spring Batch job that reads its input data from a CSV or an XML file because these file formats are supported out of the box. However, if you want to read the input data of your batch job from a .XLS or .XLSX file that was created with […] Read more