解决 com.alibaba.fastjson.JSONException: autoType is not support

前端之家收集整理的这篇文章主要介绍了解决 com.alibaba.fastjson.JSONException: autoType is not support前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

打开autotype功能

1、JVM启动参数

-Dfastjson.parser.autoTypeSupport=true

2、代码中设置

ParserConfig.getGlobalInstance().setAutoTypeSupport(true); 

如果有使用非全局ParserConfig则用另外调用setAutoTypeSupport(true);
原文链接:https://www.f2er.com/json/288784.html

猜你在找的Json相关文章