推土机升级到 mapstruct
dozer upgrade to mapstruct
我在我的应用程序中使用 dozer 进行 bean 到 bean 映射...由于它的漏洞,我想升级到 mapstruct
在 dozer 中,我们有一个用于 bean 到 bean 映射的映射器函数,它为所有不同的实例进行映射。
在 MapStruct 中,我无法用同一种方法实现。
import java.util.Map;
import org.dozer.DozerBeanMapper;
import org.dozer.MappingException;
/**
* Factory for creating DTO objects based on the object identifier that
* is passed to the object creation method.
*/
public class RetrieveChangeSetObjectDtoFactory {
private Map<String, String> objectIdentifiers;
private DozerBeanMapper beanMapper;
public Object createDto(String objectIdentifier, Persistence srcObject) throws MappingException, ClassNotFoundException {
String className = objectIdentifiers.get(objectIdentifier);
if (className == null) {
return null;
}
return beanMapper.map(srcObject, Class.forName(className));
}
/**
* Setter for the object identifiers map, maps the domain objects to their associated DTO classes.
*
* @param objectIdentifiers object identifiers map
*/
public void setObjectIdentifiers(Map<String, String> objectIdentifiers) {
this.objectIdentifiers = objectIdentifiers;
}
/**
* Setter for the bean mapper.
*
* @param beanMapper bean mapper (dozer)
*/
public void setBeanMapper(DozerBeanMapper beanMapper) {
this.beanMapper = beanMapper;
}
}
beanmapper.map
正在为我映射对象...通过 hashmap 映射对象 spring bean 加载
想要使用同一种方法来映射存储在 hashmap 中的所有对象
这是我的 Spring Dozer bean
MapStruct 和 Dozer 的一个重要区别是 MapStruct 是一个注释处理器工具,这意味着它生成代码。您将必须创建接口/映射来生成您需要的映射代码。
MapStruct 没有执行通用映射的单个入口点。但是,如果你愿意,你可以自己实现类似的东西。
您需要一个所有映射器都将实现的基本接口
public interface BaseMapper<S, T> {
T toDto(S source);
S toEntity(T target);
}
然后您需要以稍微不同的方式实施您的 RetrieveChangeSetObjectDtoFactory
。
public class RetrieveChangeSetObjectDtoFactory {
private Map<Class<?>, Map<Class<?>, BaseMapper<?, ?>>> entityDtoMappers = new HashMap<>();
public <S, T> Object createDto(Class<S> entityClass, Class<T> dtoClass, S source) {
if (source == null) {
return null;
}
return getMapper(entityClass, dtoClass).toDto(source);
}
public <S, T> Object createSource(Class<S> entityClass, Class<T> dtoClass, T dto) {
if (dto == null) {
return null;
}
return getMapper(entityClass, dtoClass).toEntity(dto);
}
@SuppressWarnings("unchecked")
protected <S, T> BaseMapper<S, T> getMapper(Class<S> entityClass, Class<T> dtoClass) {
// appropriate checks
return (BaseMapper<S, T>) entityDtoMappers.get(entityClass).get(dtoClass);
}
public <S, T> void registerMapper(Class<S> entityClass, Class<T> dtoClass, BaseMapper<S, T> mapper) {
entityDtoMappers.computeIfAbsent(entityClass, key -> new HashMap<>()).put(dtoClass, mapper);
}
}
但是,我建议只注入您需要的映射器,而不是做一些通用的事情。
我在我的应用程序中使用 dozer 进行 bean 到 bean 映射...由于它的漏洞,我想升级到 mapstruct
在 dozer 中,我们有一个用于 bean 到 bean 映射的映射器函数,它为所有不同的实例进行映射。
在 MapStruct 中,我无法用同一种方法实现。
import java.util.Map;
import org.dozer.DozerBeanMapper;
import org.dozer.MappingException;
/**
* Factory for creating DTO objects based on the object identifier that
* is passed to the object creation method.
*/
public class RetrieveChangeSetObjectDtoFactory {
private Map<String, String> objectIdentifiers;
private DozerBeanMapper beanMapper;
public Object createDto(String objectIdentifier, Persistence srcObject) throws MappingException, ClassNotFoundException {
String className = objectIdentifiers.get(objectIdentifier);
if (className == null) {
return null;
}
return beanMapper.map(srcObject, Class.forName(className));
}
/**
* Setter for the object identifiers map, maps the domain objects to their associated DTO classes.
*
* @param objectIdentifiers object identifiers map
*/
public void setObjectIdentifiers(Map<String, String> objectIdentifiers) {
this.objectIdentifiers = objectIdentifiers;
}
/**
* Setter for the bean mapper.
*
* @param beanMapper bean mapper (dozer)
*/
public void setBeanMapper(DozerBeanMapper beanMapper) {
this.beanMapper = beanMapper;
}
}
beanmapper.map
正在为我映射对象...通过 hashmap 映射对象 spring bean 加载
想要使用同一种方法来映射存储在 hashmap 中的所有对象
这是我的 Spring Dozer bean
MapStruct 和 Dozer 的一个重要区别是 MapStruct 是一个注释处理器工具,这意味着它生成代码。您将必须创建接口/映射来生成您需要的映射代码。
MapStruct 没有执行通用映射的单个入口点。但是,如果你愿意,你可以自己实现类似的东西。
您需要一个所有映射器都将实现的基本接口
public interface BaseMapper<S, T> {
T toDto(S source);
S toEntity(T target);
}
然后您需要以稍微不同的方式实施您的 RetrieveChangeSetObjectDtoFactory
。
public class RetrieveChangeSetObjectDtoFactory {
private Map<Class<?>, Map<Class<?>, BaseMapper<?, ?>>> entityDtoMappers = new HashMap<>();
public <S, T> Object createDto(Class<S> entityClass, Class<T> dtoClass, S source) {
if (source == null) {
return null;
}
return getMapper(entityClass, dtoClass).toDto(source);
}
public <S, T> Object createSource(Class<S> entityClass, Class<T> dtoClass, T dto) {
if (dto == null) {
return null;
}
return getMapper(entityClass, dtoClass).toEntity(dto);
}
@SuppressWarnings("unchecked")
protected <S, T> BaseMapper<S, T> getMapper(Class<S> entityClass, Class<T> dtoClass) {
// appropriate checks
return (BaseMapper<S, T>) entityDtoMappers.get(entityClass).get(dtoClass);
}
public <S, T> void registerMapper(Class<S> entityClass, Class<T> dtoClass, BaseMapper<S, T> mapper) {
entityDtoMappers.computeIfAbsent(entityClass, key -> new HashMap<>()).put(dtoClass, mapper);
}
}
但是,我建议只注入您需要的映射器,而不是做一些通用的事情。