欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

FASTJSON 增加对泛型的支持

程序员文章站 2023-12-29 15:21:52
...
FASTJSON 默认没有开启对泛型的支持。通过SerializerFeature.WriteClassName增加

	Map<String, Date> map = new HashMap<String, Date>();
		map.put("now", new Date());

		String str = JSON.toJSONString(map,SerializerFeature.WriteClassName);
		System.out.println(str);
		Map<String, Date> result = JSON.parseObject(str, map.getClass());
		System.out.println(result.get("now").getClass());

上一篇:

下一篇: