Mapping Immutable Types using Orika

1. Overview When using Orika, we generally map mutable JavaBean objects that contain getters and setters. But Orika also provides support to work w...

Continue Reading

Mapping with Generics using Orika

1. Overview When we work with generics, Java enforces type safety only during the compilation time. At runtime, Java erases type information and we...

Continue Reading

Mapping Collections using Orika

1. Introduction In our Java objects, we generally use some kind of collection, be it a List or Map. When mapping collection-typed fields, we genera...

Continue Reading

Quick Guide to Orika

1. Introduction Orika is a Java Bean mapping library. Essentially it recursively copies data from one object to another using the provided mapping ...

Continue Reading