原文链接:https://blog.csdn.net/qq_23140197/article/details/86503875 (侵删)
开发的过程中往往依赖的表过多直接按Map来传递数值,某些场景需要把Map转换为实体类,这里贴一个最简洁的方法,依赖阿里的FastJSon。
maven引入
<dependency> <groupId>com.alibaba</groupId> <artifactId>fastjson</artifactId> <version>1.2.54</version> </dependency>
类引入
import com.alibaba.fastjson.JSON;
转换方法
Student entity = JSON.parseObject(JSON.toJSONString(map), Student.class);
原文地址:https://www.cnblogs.com/cmz-32000/p/12161775.html
时间: 2024-10-05 05:32:15