标签: java spring-boot
你好团队帮助我完成我的功能中的场景我发送我的模型对象1我希望映射到另一个在服务层创建的模型对象
请帮帮我。
答案 0 :(得分:0)
您可以使用ModelMapper或MapStruct库进行对象映射。我更喜欢ModelMapper。
ModelMapper mapper = new ModelMapper (); YourClassType obj = mapper.map(object1, YourClassType.class);