-
Hi,
Dozer releases 4.x work with JDK 1.4.
More simple way of copying properties is using Apache Commons Bean Utils library. If you need just pure copying without transformations, nested mapping and collections, then Dozer may be an overkill for your project.
Dmitry.
2009-11-17 08:08:35 UTC by buzdin
-
Guys I simple need to copy the atributes from a pojo bean to another (same obj), but they are using different classloaders.
I tried Dozer, but my project **requires** jdk 1.4 :/
Any chance to get Dozer working on 1.4?
Isn't there like a easier way to copy the attributes from one bean to another?
Thanks in advance,
Marcos.
2009-11-16 23:33:03 UTC by https://www.google.com/accounts
-
updated.
2009-11-15 07:01:27 UTC by nadavh
-
Hello there,
Here the scenario I have:
I am actually doing mapping of two classes dtoA and MainDomain
and inside MainDomain, I have a property which is a list of object "domain".
The mapping for the class domain is done by mapping it from 2 different DTO classes, I call them dtoA and dtoB, but as u noticed some property of dtoA also needs to be mapped to MainDomain so what I have in my...
2009-11-11 08:56:44 UTC by tylerburden99
-
My entity has the following two attributes:
private Boolean active;
private boolean created;
If the variable "active" is "false" DozerBeanMapper sets the primitve wrapper type to "null". However, the primitive boolean "created" is mapped correctly.
2009-11-06 08:03:36 UTC by aeshr
-
Hello,
this is a quick fix to getting eclipse plugin into work on version 3.5.x
Regards.
2009-11-04 13:51:34 UTC by hoomb
-
org.dozer.DozerConverter Line 51: throw new MappingException("Destination Type is not accepted by this Custom Converter! " + destinationClass);
It would be nice, when the exception message would also contain the full qualified class name of the DozerConverter instance. At the moment you have to debug, if you want to see which instance of a DozerConverter has thrown this exception.
2009-11-02 09:05:21 UTC by scr85
-
Yes, guys, we realize that here we have a problem :(
Original developer of Eclipse plugin is now away from Dozer development.
Someone needs to pick up the plugin source code.
We will try to review and cut down the dependencies of the plugin and ship installable version with next release after winter holidays.
Dmitry.
2009-11-02 08:37:45 UTC by buzdin
-
Try to make sure that equals() method treats both objects as similar. Otherwise Dozer thinks that these are two separate instances.
If this does not help please post extract from your mapping file.
Dmitry.
2009-11-02 08:34:38 UTC by buzdin
-
Thanks for the hint for Weblogic users.
Dmitry.
2009-11-02 08:31:22 UTC by buzdin