Top "Dozer" questions

Dozer is a Java Bean to Java Bean mapper that recursively copies data from one object to another.

Dozer deep mapping not working

I am trying to use dozer 4.1 to map between classes. I have a source class that looks like this: public …

java xml jaxb dozer jax-rpc
Prevent Dozer from triggering Hibernate lazy loading

I am using Spring transactions so the transaction is still active when POJO to DTO conversion occurs. I would like …

java hibernate spring dozer spring-transactions
How can I tell Dozer to bypass mapping null or empty string values per field using the programming api?

The faq explains how to do this in XML. This shows how to do it per class using the API. …

java dozer
Dozer mapping inner classes

I need to map class A into class C using dozer framework. public class A { private String fielda1; private String …

java dozer
Dozer and Spring integration

EDIT : A new lib has been introduced which clarify the thing for new versions Since version 5.5.0 Spring integration comes within …

spring dozer
dozer Boolean property mapping

It appears that Dozer will not map a Boolean property if the accessor of that property is defined as isProperty() …

java groovy dozer
DTO to Entity And Entity to DTO

We're to use DTO's to send data to and from the presentation layer. We have layers like: facade appService domain …

hibernate domain-driven-design dozer
Custom converter with Spring dependency injection

Is there a way to define a custom converter in Dozer for converting one top-level type to another, which is …

spring dozer
Dozer mapping: NoSuchMethodException

I'm trying to convert one type to another, using dozer mappings. I've defined some beans like these: public class OneBean …

java spring portlet dozer
Dozer mapping : More than one source to destination

Im new to DOZER mapping Can we map properties from more than one source class to destination? EG class A { …

java dozer