I write posts on Java, Concurrency, Design patterns, Spring Boot, React and anything that I learn on technology.
08 Feb, 2017
Spring context is also termed as Spring IoC container which is responsible for instantiate, configure and assemble the beans by reading configuration meta data from XML, Java annotations and/ or Java code in configuration files.
Tags:
02 Feb, 2017
Method references are the special form of Lambda expression. When your lambda expression are doing nothing other than invoking existing behaviour (method), you can achieve same by referring it by name.
Tags:
01 Feb, 2017
Java 8 introduced new package java.util.stream which contains classes to perform SQL-like operations on elements. Stream is a sequence of elements on which you can perform aggregate operations (reduction, filtering, mapping, average, min, max etc.).
Tags:
01 Feb, 2017
You can perform intermediate and terminal operations on Streams. Intermediate operations result in a new stream and are lazily evaluated and will start when terminal operation is called.
Tags:
27 Jan, 2017
Apache Avro supports two ways to generate classes from schema. i.e. Pragmatically generating schema or using maven AVRO plugin.
Tags:
23 Jan, 2017
Java 8 reincarnated SAM interfaces and termed them Functional interfaces. Functional interfaces have single abstract method and are eligible to be represented with Lambda expression.
Tags: