You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class Data {
private List<Entity> entities;
public List<Entity> getEntities() {
return entities;
}
public void setEntities(List<Entity> entities) {
this.entities = entities;
}
}
Destination class:
@Data
@AllArgsConstructor
@NoArgsConstructor
public class DataDTO {
private List<InnerEntity> innerDtoEntities;
}
public class Entity {
private List<InnerEntity> innerEntities;
public List<InnerEntity> getInnerEntities() {
return innerEntities;
}
public void setInnerEntities(List<InnerEntity> innerEntities) {
this.innerEntities = innerEntities;
}
}
public class InnerEntity {
private String field;
public String getField() {
return field;
}
public void setField(String field) {
this.field = field;
}
}
public Object create(Object s, ma.glasnost.orika.MappingContext mappingContext) {if(s == null) throw new java.lang.IllegalArgumentException("source object must be not null");if (s instanceof test.Data) {test.Data source = (test.Data) s;
try {
java.util.List arg0 = null; if ( !(((java.util.List)source.getInnerEntities()) == null)) {
java.util.List new_arg0 = ((java.util.List)new java.util.ArrayList());
new_arg0.addAll(mapperFacade.mapAsList(((java.util.List)source.getInnerEntities()), ((ma.glasnost.orika.metadata.Type)usedTypes[0]), ((ma.glasnost.orika.metadata.Type)usedTypes[0]), mappingContext));
arg0 = new_arg0;
} else {
if ( !(arg0 == null)) {
arg0 = null;
};
}return new test.DataDTO(arg0);
} catch (java.lang.Exception e) {
if (e instanceof RuntimeException) {
throw (RuntimeException)e;
} else {
throw new java.lang.RuntimeException("Error while constructing new DataDTO instance", e);
}
}
}return new test.DataDTO();
}
I'm getting Caused by: javassist.compiler.CompileError: getInnerEntities() not found in test.Data
In generated ObjectFactory it tries to getInnerEntities from Data - (java.util.List)source.getInnerEntities(), howevever, InnerEntity dos not belong to Data directly
Not sure if I'm doing the right mapping here and it is not supported by Orika or it's a bug.
The text was updated successfully, but these errors were encountered:
It's fixed by removing @AllArgsConstructor, so ma.glasnost.orika.impl.DefaultMapperFactory#lookupObjectFactory(ma.glasnost.orika.metadata.Type<T>, ma.glasnost.orika.metadata.Type<S>, ma.glasnost.orika.MappingContext) returns DefaultConstructorObjectFactory when there is only one constructor, instead of generated ObjectFactory.
But still i believe it could be bug in generated ObjectFactory
Source class:
Destination class:
Mapping written like this:
Generated ObjectFactory method:
I'm getting Caused by: javassist.compiler.CompileError: getInnerEntities() not found in test.Data
In generated ObjectFactory it tries to getInnerEntities from Data - (java.util.List)source.getInnerEntities(), howevever, InnerEntity dos not belong to Data directly
Not sure if I'm doing the right mapping here and it is not supported by Orika or it's a bug.
The text was updated successfully, but these errors were encountered: