将映射添加到模型映射器时出现问题
Problem with adding mappings to model mapper
我 运行 遇到了将带有自定义 PropertyMap 定义的 class 添加到模型映射器的问题。只要我在我正在使用的 class 的 @PostConstruct 中添加了映射,一切都在工作。另一方面,当我将其移动到新的 class 时,我想在其中添加所有 PropertyMaps,但似乎没有添加到模型映射器中。
使用此配置,一切正常。 RestCompanyDto 有对象 RestAddressDto,当我使用模型映射器的映射函数时,内部对象被正确转换。
@Service
@RequiredArgsConstructor
public class RestOrganizationService {
private final ModelMapper modelMapper;
private final RestAddressDtoMap addressDtoMap;
@PostConstruct
public void mapperConfig() {
modelMapper.addMappings(addressDtoMap);
}
private OfficeDto map(Long id, RestOfficeDto restOfficeDto){
OfficeDto officeDto = modelMapper.map(restOfficeDto, OfficeDto.class);
officeDto.setId(id);
return officeDto;
}
另一方面,当我从 RestOrganizationService 中删除 @PostConstructor 并将其移动到新的 class 时,地址对象的映射不起作用。
@配置
@AllArgsConstructor
public class EPRestMapperConfig {
private final ModelMapper modelMapper;
private final RestAddressDtoMap restAddressDtoMap;
@PostConstruct
public void init() {
modelMapper.addMappings(restAddressDtoMap);
}
}
这里是 PropertyMap 的附加代码
@Service
public class RestAddressDtoMap extends PropertyMap<RestAddressDto, AddressDto> {
private CityRepository cityRepository;
private CityServiceImpl cityService;
public RestAddressDtoMap(CityRepository cityRepository, CityServiceImpl cityService){
super(RestAddressDto.class, AddressDto.class);
this.cityRepository = cityRepository;
this.cityService = cityService;
}
@Override
protected void configure() {
using(getCityDto).map(source.getCityId()).setCity(null);
}
private final Converter<Long, CityDto> getCityDto = context ->
(context.getSource() != null
? cityService.toDto(cityRepository.findOne(context.getSource()))
: null);
}
在你的情况下,我建议使用以下方法:
@Configuration
public class EPRestMapperConfig {
@Bean
public ModelMapper modelMapper(RestAddressDtoMap restAddressDtoMap) {
return new ModelMapper().addMappings(restAddressDtoMap);
}
@Bean
public RestAddressDtoMap restAddressDtoMap() {
return new RestAddressDtoMap();
}
}
我喜欢这种创建bean的方式,因为你可以在创建bean的过程中看到bean之间所需的依赖关系并设置所需的组件。
我 运行 遇到了将带有自定义 PropertyMap 定义的 class 添加到模型映射器的问题。只要我在我正在使用的 class 的 @PostConstruct 中添加了映射,一切都在工作。另一方面,当我将其移动到新的 class 时,我想在其中添加所有 PropertyMaps,但似乎没有添加到模型映射器中。
使用此配置,一切正常。 RestCompanyDto 有对象 RestAddressDto,当我使用模型映射器的映射函数时,内部对象被正确转换。
@Service
@RequiredArgsConstructor
public class RestOrganizationService {
private final ModelMapper modelMapper;
private final RestAddressDtoMap addressDtoMap;
@PostConstruct
public void mapperConfig() {
modelMapper.addMappings(addressDtoMap);
}
private OfficeDto map(Long id, RestOfficeDto restOfficeDto){
OfficeDto officeDto = modelMapper.map(restOfficeDto, OfficeDto.class);
officeDto.setId(id);
return officeDto;
}
另一方面,当我从 RestOrganizationService 中删除 @PostConstructor 并将其移动到新的 class 时,地址对象的映射不起作用。
@配置
@AllArgsConstructor
public class EPRestMapperConfig {
private final ModelMapper modelMapper;
private final RestAddressDtoMap restAddressDtoMap;
@PostConstruct
public void init() {
modelMapper.addMappings(restAddressDtoMap);
}
}
这里是 PropertyMap 的附加代码
@Service
public class RestAddressDtoMap extends PropertyMap<RestAddressDto, AddressDto> {
private CityRepository cityRepository;
private CityServiceImpl cityService;
public RestAddressDtoMap(CityRepository cityRepository, CityServiceImpl cityService){
super(RestAddressDto.class, AddressDto.class);
this.cityRepository = cityRepository;
this.cityService = cityService;
}
@Override
protected void configure() {
using(getCityDto).map(source.getCityId()).setCity(null);
}
private final Converter<Long, CityDto> getCityDto = context ->
(context.getSource() != null
? cityService.toDto(cityRepository.findOne(context.getSource()))
: null);
}
在你的情况下,我建议使用以下方法:
@Configuration
public class EPRestMapperConfig {
@Bean
public ModelMapper modelMapper(RestAddressDtoMap restAddressDtoMap) {
return new ModelMapper().addMappings(restAddressDtoMap);
}
@Bean
public RestAddressDtoMap restAddressDtoMap() {
return new RestAddressDtoMap();
}
}
我喜欢这种创建bean的方式,因为你可以在创建bean的过程中看到bean之间所需的依赖关系并设置所需的组件。