Skip to content

Latest commit

 

History

History
39 lines (24 loc) · 1.61 KB

File metadata and controls

39 lines (24 loc) · 1.61 KB

image info JMapper Tutorial

image info Description

JMapper object-mapping framework is similar to MapStruct configuration mechanism that should be provided beforehand. Several configuration variants cab be supported:

  • XML-based
  • annotation-based
  • programmatic configuration via Java API

Uses the bytecode generation mechanism based on Javassist library to provide end-to-end mappings.

image info Features

  • relational mapping of several classes to one class (many to one) and vice versa (one to many)
  • configurations inheritance

image info Pros & Cons

image infoPros

  • high performance due to bytecode generation mechanism (Javassist library)
  • easy-to-use feature mappings

image info Cons

  • hard to debug and validate object mappings correctness

image info Use cases

image info Links