Tagged Questions
Dozer is a Java Bean to Java Bean mapper that recursively copies data from one object to another. Typically, these Java Beans will be of different complex types.
5
votes
2answers
737 views
dozer boolean property mapping
It appears that Dozer will not map a boolean property if the accessor of that property is defined as isProperty() rather than getProperty().
The following groovy script illustrates the problem:
...
4
votes
2answers
553 views
Hibernate Persistence problems with Bean Mapping (Dozer)
I am using Hibernate 3, and having a particular issue when persisting a new Entity which has an association with an existing detached entity. Easiest way to explain this is via code samples. I have ...
3
votes
1answer
230 views
Dozer String to enum mapping
I have such enum:
public enum PartnershipIndicator {
VENDOR("VENDOR"), COPARTNER("COPARTNER"), BUYER("BUYER");
String code;
private PartnershipIndicator(String code) {
this.code ...
3
votes
3answers
1k views
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 to prevent Dozer from triggering lazy loading, so that hidden sql queries never ...
3
votes
1answer
313 views
Mapping value objects with Dozer
I'm using Dozer to map my DTOs to JPA entities.
One of the use-cases is that a DTO representation of an already existing entity arrives on a WS, then I find the entity using JPA and use Dozer to map ...
3
votes
1answer
1k views
Dozer mapping inner classes
I need to map class A into class C using dozer framework.
public class A {
private String fielda1;
private String fielda2;
public String getFielda1() {
return fielda1;
}
public void ...
3
votes
2answers
1k views
Non-trivial Dozer mappings
I'm struggling to get Dozer to bend to my will for something that I feel should be quite simple. I have two similar models that I wish to map between, however one has a 'deeper' hierarchy than the ...
3
votes
4answers
5k views
How to map collections in Dozer
I'd like to do something like:
ArrayList<CustomObject> objects = new ArrayList<CustomObject>();
...
DozerBeanMapper MAPPER = new DozerBeanMapper();
...
ArrayList<NewObject> ...
2
votes
1answer
139 views
Dozer can't map Hibernate's persistentBag to List
I'm implementing a rest web service in Java as university assignment so I'm quite new to such things thus probably I'm doing it in the wrong way.
Anyway the problem is that Dozer can't map a ...
2
votes
2answers
113 views
Dozer mapping non-Generic Collections to properties
I have some class structure as follows. These classes are hibernate classes so I cant change them.
//assume all getters & setters are present
public class Order{
private Customer customer;
...
2
votes
4answers
845 views
GWT + entities + JPA + DTO + Dozer
I am wondering what is the best way to handle mapping of entity beans (JPA 2) to DTOs.
Since you cannot use entity beans "directly" with GWT, you need to handle DTOs instead.
I have several entities ...
2
votes
2answers
278 views
How do I convert a Boolean to String using Dozer?
I am new to Dozer and I am trying to map a String to a Boolean and vica versa. Can anyone tell me does Dozer support this or do I have to create a custom converter. The string will contain true or ...
2
votes
3answers
1k views
Convert List of one type to Array of another type using Dozer
I'm wondering how to convert a List of one type to an array of another type in Java using Dozer. The two types have all the same property names/types.
For example, consider these two classes.
public ...
2
votes
2answers
3k views
2
votes
2answers
2k views
Alternative to dozer for bean mapping?
I am trying to figure out an easy way to map DTOs to entities without the boiler-plate code. While I was thinking of using dozer it appears to require a lot of xml configuration. Has anybody seen a ...
2
votes
2answers
615 views
Dozer InstantiationException mapping Calendar class
I'm getting an InstantiationException when trying to map Date -> Calendar.
Simple test follows:
@Test
public void testConversion()
{
GregorianCalendar cal = new ...
2
votes
4answers
1k views
Constants in dozer mappings
does anybody know how to put a constant value into an attribute with dozer? I haven't seen anything about that in the dozer's documentation
2
votes
1answer
593 views
Dozer : primitive int -1 value to null object mapping
Is there a way to configure dozer via its xml mapping file to convert a primitive int field value of -1 to a null object reference?
The legacy object model defaults the value to -1, so that zero can ...
1
vote
0answers
61 views
How to map a field with type as an abstract class with dozer?
I have the following domain structure:
abstract class Person { String name; //with getter and setter }
class Employer extends Person {}
class Employee extends Person {}
class Contract { Person ...
1
vote
0answers
90 views
How to convert a Java/Scala object to a Protocol Buffers message?
I'm trying to convert a Java/Scala object into a Protocol Buffers message.
My object is called IDSNumber and it has a doubleValue method which returns a java.lang.Double. I'm trying to get it to be ...
1
vote
1answer
38 views
How to access a DTO attribute when DTO is inside a hashmap in DOZER mapping file
I have a UserDTO which has userID field. The HashMap has this DTO as value for key User_Details.
I want to use DOZER mapping to set the userID attribute from HashMap->User_Details->userId to ...
1
vote
2answers
85 views
Dozer Converter map String to String
I am working with Dozer and it is mapping our JAXB objects that are coming from our WebService to business object that reside in the service layer of our application. In some particular cases I need ...
1
vote
1answer
26 views
Dozer mapping description to code
I am using Dozer to map my JAXB objects that come off a WebService interface to my domain objects. One of the elements or properties in my JAXB is a String set/setLocation(). This would be the ...
1
vote
1answer
475 views
BeanUtils.copyProperties() vs DozerBeanMapper.map()
I am using BeanUtils.copyProperties() for bean to dto mapping when I need to map all fields and field names are same. But I need not all field of source bean to map in destination dto, I used ...
1
vote
3answers
499 views
Dozer deep propery mapping with custom converter
I have deep property mapping in my application (from domain objects to DTO, and the reverse), similar to next example:
...
<field>
<a>employee.id</a>
...
1
vote
0answers
325 views
Dozer mapping jax-ws classes
See the question here (http://stackoverflow.com/questions/4163730/) to see what my problem is. I've run into the same problem as the author has, unfortunately his solution does not seem to be ...
1
vote
1answer
304 views
Dozer mapping of generic lists
I have a ListWrapper like
public class ListWrapper<T> {
private List<T> entries = new ArrayList<T>();
public List<T> getEntries() {
return entries;
}
public void ...
1
vote
3answers
338 views
custom dozer mapping
I'm trying to use Dozer to convert an instance of
class Source {
private List<Foo> foos = new ArrayList<Foo>();
public List<Foo> getFoos() {
return foos;
}
public void ...
1
vote
1answer
80 views
Collection Mapping
Suppose I have the following classes:
class A1 {
List<B1> bList;
}
class B1 {
Long id;
}
---
class A2 {
List<Long> bList;
}
I want to map class A1 to A2 with Dozer, where ...
1
vote
2answers
461 views
Dozer Mapping and Hibernate lazy initialization
i have the following dozer mapping:
com.company.xx.xx.model.MyClass
com.company.xx.xx.model.MyClassToMap
afield
afield
customer
customer
I load MyClass with with hibernate. ...
1
vote
1answer
393 views
Dozer bidirectional mapping (String, String) with custom comverter impossible?
I have a Dozer mapping with a custom converter:
<mapping>
<class-a>com.xyz.Customer</class-a>
<class-b>com.xyz.CustomerDAO</class-b>
<field ...
1
vote
1answer
423 views
Dozer: Hibernate PersistentMap is not mapped to java.util.HashMap
I have a Hibernate annotated entity with a field:
@OneToMany(mappedBy="templateInstance", fetch = FetchType.EAGER)
@MapKey(name = "attributeName")
private Map<String, Component> components;
...
1
vote
1answer
1k views
Dozer custom converter ID mapping: Object to Long and Long to Object via DozerConverter getParameter
I need help configuring my dozer mapping file.
Mainly I would like to know how to get User user obejct to convert to Long userId.
Hence map: user >> userId
But I have multiple objects such as ...
1
vote
2answers
1k views
Dozer Mapping HashMap<Key,Value> to List<Value>
I have a source object which has:
public class Source {
public Map<String,DTO>getDTOs();
}
and a destination object:
public class Destination {
public List<DTO> getDTOs();
...
1
vote
3answers
5k views
Dozer mapping for Hibernate object to DTO
I try to use Dozer to convert my domain entity to DTO objects.
So, I want to convert PersistentList, PersistentBag, ... from my domain entity to ArrayList, ... in my DTO objects to avoid lazy problem.
...
1
vote
1answer
1k views
Mapping deep properties with intermediate collections in dozer
Suppose I have the following classes
public class Baz {
private List<Foo> foos = new ArrayList<Foo>();
}
public class Foo {
private String string;
}
public class Target {
private ...
1
vote
1answer
2k views
How to Map unset property to value without getting NullPointerException in Dozer
Using Dozer to map two objects, I have:
/**
/* This first class uses the GXT (ExtJS) framework
**/
Class1 extends BaseModelData
{
public int getId()
{
return (Integer)get("id");
}
...
1
vote
1answer
498 views
Dozer map Text to String
I'm using GWT and GAE for my project. I'm using data transfer objects and dozer to move data between client and server. Dozer had been working great, but I have some classes that need to store text ...
1
vote
2answers
1k views
Is there a data mapper like Dozer for c#
I am looking for something similar to Java's Dozer for C#, something that uses reflection to automatically maps the data fields in one object to another.
A link to Dozer: ...
1
vote
2answers
909 views
Dozer object on GAE/J
I'm trying to write application using GWT and GAE/J (Google AppEngine with Java). For my application i need to use DTO. In order to convert Pojo into JDO Entities I want to use Dozer library. So when ...
0
votes
0answers
42 views
Dozer Exception
I am getting the below exception when the dozer bean mapper executing mapper.map(sourc, destination)
My JDK Version 1.6
Following Jar's are in my class path
dozer-5.3.2.jar
slf4j-nop-1.6.4.jar
...
0
votes
1answer
102 views
Dozer file not found exception
I am trying to execute below dozer example. my xml file is located in the same location as my java file, but i am getting the file not found exception
Exception in thread "main" ...
0
votes
0answers
63 views
Dozer Deep Mapping with Annotations
Unable to map deep mapping from Source class to Target class SourceEmployee.Address.houseName to TargetEmployee.houseName
Source object class
public class SourceEmployee
{
private String ...
0
votes
0answers
19 views
Dozer: change the field name strategy
As you know, dozer use same field name to mapping between two beans, but how can I just simple change this mapping strategy.
public class Product {
private String productName;
public String ...
0
votes
1answer
48 views
How to set value to property through Dozer mapping file?
I am using Dozer mapping. i have two pojo1 and pojo2. pojo1 values to be mapped to pojo2. Pojo1 has 3 properties and Pojo2 has 4 properties. i am able to map 3 properties form pojo1 to pojo2 but to ...
0
votes
1answer
21 views
Can't initialize Dozer 5.3.2
Updated Dozer to 5.3.2. when dozer is trying to initialize prints this message infinity times.
How to fix this problem?
|11:06:25| INFO|zer.DozerInitializer| | - Initializing Dozer.
...
0
votes
3answers
64 views
Dozer: Mapping of class with no default constructor
Lets say I want to map the following two classes:
public class A {
String member;
public void setMember(String member) { this.member = member }
public String getMember() { return member ...
0
votes
0answers
32 views
Dozer with Xmlbeans or writing manual mapper class [closed]
Can you provide an example of using dozer with xmlbeans?
0
votes
0answers
135 views
Two level list Dozer mapping with a custom converter and a cutom-convert-param
I have the class mapping hierarchy as below. Solution (class A) contains a list of mappings(class B) and mappings contains a list of mapplets (class C). I am using a custom list converter to convert ...
0
votes
0answers
64 views
How to map complex object collection to primitive collection in Dozer?
I'm trying to map A#foo to B#fooIds
Today I'm doing this :
Classes :
public class A {
private Set<Foo> foos;
// ... omit getter and setters
}
public class B {
private List<Long> ...