While reading a record from a file, processing already read record, or writing a record to a file, exceptions happens. Sometimes the exceptions are not so serious and we can skip it. We can configure the Spring Batch to skip the current record if an exception happens. As shown below XML code 1 <batch:job id=”importEmployees”>…… Continue reading Skipping records during record reading, processing or writing
Month: November 2019
JCache EternalExpiryPolicy Example
This post explains EternalExpiryPolicy with simple example. EternalExpiryPolicy is an expiry policy used to inform cache to never remove entries in the cache. Below is an example of how to use it. Main Code 1 import java.util.Iterator; 2 3 import javax.cache.Cache; 4 import javax.cache.Cache.Entry; 5 import javax.cache.CacheManager; 6 import javax.cache.Caching; 7 import javax.cache.configuration.Factory; 8 import…… Continue reading JCache EternalExpiryPolicy Example
Serializing Java object to YAML format
In this post under YamlBeans, I will show with an example of how to serialize a Java object to YAML format. Below is the complete code Main Code 1 import java.io.File; 2 import java.io.FileWriter; 3 import java.io.IOException; 4 import java.util.ArrayList; 5 import java.util.List; 6 7 import com.esotericsoftware.yamlbeans.YamlWriter; 8 9 public class YamlDemo1 { 10 public…… Continue reading Serializing Java object to YAML format