开发的过程中往往依赖的表过多直接按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);