From d0828fcba43ff4706e100218db37a62c5a173a92 Mon Sep 17 00:00:00 2001 From: Gunnar Morling Date: Mon, 1 Apr 2013 11:23:03 +0300 Subject: [PATCH] Updating readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index 1bfcc8b8d..3bcee4f78 100644 --- a/readme.md +++ b/readme.md @@ -2,7 +2,7 @@ MapStruct is a Java [annotation processor](http://docs.oracle.com/javase/6/docs/technotes/guides/apt/index.html) for the generation of type-safe bean mapping classes. -All you have to do is to define one more more mapper interfaces, annotate them with the `@Mapper` annotation and add the required mapping methods. During compilation, MapStruct will generate an implementation for each mapper interface, based on your preferred mapping framework (currently [Dozer](http://dozer.sourceforge.net/) is supported, more to come). +All you have to do is to define one more more mapper interfaces, annotate them with the `@Mapper` annotation and add the required mapping methods. During compilation, MapStruct will generate an implementation for each mapper interface. This implementation uses plain Java method invocations, i.e. no reflection or similar. The following shows an example. First, an object (e.g. a JPA entity) and an accompanying data transfer object (DTO):