Elegance, high performance and robustness all in one java bean mapper
dependabot[bot] on maven
Bump xstream from 1.4.9 to 1.4.… (compare)
dependabot[bot] on maven
avurro on master
Bump junit from 4.12 to 4.13.1 … Merge pull request #91 from jma… (compare)
avurro on master
Below are changes updated xstre… update version to 1.6.2 Update pom.xml groupId: io.g… and 16 more (compare)
Hi @avurro ! Hi everybody!
I have a question. Consider the following
@JGlobalMap
class Dto {
private Integer id;
private String startDate;
private String endDate;
...getters & setters
}
@JGlobalMap
class Entity {
private Integer id;
private Date startDate;
private Date endDate;
...getters & setters
}
I try to map Dto to Entity and vice versa but see such errorerror in static conversion: probably is an incompatibility of signature, the expected input fields do not match with the real ones, checks the configured class.
I've tried to work with @JMapConversion methods, but still no success.
Could you please help me with that ?
Hi @avurro ! Hi everybody!
I have run into an issue
ERROR com.googlecode.jmapper.JMapper - ConversionBodyIllegalCodeException: There is an error in the generated method. Additional information: by javassist.bytecode.BadBytecode: vVAllAllAll (Ljava/lang/Object;Ljava/lang/Object;)Ljava/lang/Object; in myclass: inconsistent stack height -32219
java.lang.ExceptionInInitializerError
It seems that my structure has a very deep nesting and javassist failed to handle it.
I will try to decrease the nesting level, however could someone recommend me any workaround?
I’m using JMapper in my application
When ever there is a conversation between Boolean to boolean it is throwing null pointer exception