我有一个由休眠定义的布尔值
public class MyClassWithMyVar {
@Column(name="myVar", nullable=false)
private Boolean myVar;
public Boolean getMyVar(){
return myVar;
}
public void setMyVar(Boolean myVar){
this.myVar=myVar;
}
}
我们确实知道此布尔值绝不能为null,mapstruct在某些映射器中使用了它
@Mapper
@Mappings({@Mapping(target = "id", ignore =true)})
abstract MyClassWithMyVar copyMyClassWithMyVar(MyClassWithMyVar myClassWithMyVar);
然后将所有具有Boolean的位置更改为boolean,运行我的应用程序并引发NoSuchMethodError:
org.springframework.web.util.NestedServletException: Handler processing failed; nested exception is java.lang.NoSuchMethodError: MyClassWithMyVar.getMyVar()Ljava/lang/Boolean;
答案 0 :(得分:1)
mapstruct遵循JavaBeans规范,而JavaBeans规范http://download.oracle.com/otndocs/jcp/7224-javabeans-1.01-fr-spec-oth-JSpec/表示:
对于布尔属性,我们允许使用getter方法来匹配模式:
public boolean is<PropertyName>();
是用于布尔值(原始类型) 当我们确实想返回对象时,我们可以使用getX()例如Boolean getMyBoolean()。
答案 1 :(得分:1)
您可以在mapstruct中创建自己的方法。 下面的转换示例
class Entity{
Boolean x;
};
class DTOEntity{
boolean z;
}
在Mapstruct中尝试
@Mapping(target = "z", source = "x", qualifiedByName="getBoolean")
DTOEntity entityToDto(Entity entity);
@Named("getBoolean")
default boolean getBoolean(Boolean x) {
return (boolean) x;
}
}