-
Revison number is 914.
2009-10-22 20:30:29 UTC in Dozer
-
I've added more detailed message, when argument type mismatch occurs.
2009-10-22 20:20:54 UTC in Dozer
-
vadeg committed revision 959 to the Dozer SVN repository, changing 2 files.
2009-10-22 20:19:13 UTC in Dozer
-
NPE bugfixg added. The other thing is default dozer behavior. If you think this behavior is not acceptable, please create a feature request.
2009-10-22 19:46:23 UTC in Dozer
-
vadeg committed revision 958 to the Dozer SVN repository, changing 1 files.
2009-10-22 19:45:20 UTC in Dozer
-
By default, Dozer builds mappings between fields with the same name. In your example, dozer builds mapings:
1. between theStringValue.theValue and theStringValue
2. between theStringValue and theStringValue of the DeepMappingTest object.
The second mapping cause an exception, because field types do not match. You need set wildcard="false" to your mapping and it will work fine, but in this case...
2009-10-21 20:26:20 UTC in Dozer
-
Hello!
For now, there are several ways to do right mapping:
1. do not create dest array in the class.
2. set copy-by-reference="true". Because String is an immutable object, changes in one array doesn't affect other array.
This problem occurs, because your dest array was already initialized with 100 null's.
- If you put flag relationship-type="non-cumulative", then dozer tries to update...
2009-10-21 19:23:40 UTC in Dozer
-
vadeg committed revision 957 to the Dozer SVN repository, changing 9 files.
2009-10-21 17:29:55 UTC in Dozer
-
Patch added: 2880901
It seems that is not a bug. You must set
com.sun.org.apache.xerces.internal.jaxp.datatype.XMLGregorianCalendarImpl
for the dest field.
2009-10-17 08:34:32 UTC in Dozer
-
Patch contains:
- test for the bug
- failure test with indexed read property.
2009-10-17 08:33:00 UTC in Dozer