This repository has been archived by the owner on Oct 23, 2024. It is now read-only.
productJson.toJavaObject(Product.class)不能反序列化XMLGregorianCalendar类型,但是JSON.parseObject(productJson().toJSONString(),Product.class) 可以 #1023
Labels
Milestone
1.2.24版本
productJson 是mybatis从数据库jsonb字段的数据,JSONObject类型,通过productJson.toJSONString()后的字符串根平常json字符串一样。
本来想有了productJson之后可以直接调用productJson .toJavaObject(Product.class)反序列化成Product对象的,但是报错:
com.alibaba.fastjson.JSONException: can not cast to : javax.xml.datatype.XMLGregorianCalendar
而通过JSON.parseObject(productJson().toJSONString(),Product.class) 切可以反序列化成功。
虽然可以做到,但是用法上不如前者。
The text was updated successfully, but these errors were encountered: