/*
|
* Copyright (c) 2018-2999 广州市蓝海创新科技有限公司 All rights reserved.
|
*
|
* https://www.mall4j.com/
|
*
|
* 未经允许,不可做商业用途!
|
*
|
* 版权所有,侵权必究!
|
*/
|
|
package com.yami.trading.common.config;
|
|
import org.springframework.context.annotation.Bean;
|
import org.springframework.context.annotation.Configuration;
|
|
import ma.glasnost.orika.MapperFacade;
|
import ma.glasnost.orika.MapperFactory;
|
import ma.glasnost.orika.impl.DefaultMapperFactory;
|
|
/**
|
* MapperFacade 用于dto ->entity的转换
|
* @author lgh
|
*/
|
@Configuration
|
public class OrikaConfig {
|
|
@Bean
|
public MapperFactory mapperFactory() {
|
return new DefaultMapperFactory.Builder().build();
|
}
|
|
@Bean
|
public MapperFacade mapperFacade() {
|
return mapperFactory().getMapperFacade();
|
}
|
}
|