Skip to main content
 首页 » 编程设计

Java将任意类型的Object对象转换为相应的实体对象

2022年07月18日144Leo_wl

通过com.fastxml.jackson的ObjectMapper对象进行转换:

  1. ObjectMapper objectMapper = new ObjectMapper();
  2.  
    objectMapper.convertValue(Object fromValue, Class<T> toValueType);

本文参考链接:https://www.cnblogs.com/maohuidong/p/14096709.html
阅读延展