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

打开autotype功能

1、JVM启动参数

-Dfastjson.parser.autoTypeSupport=true

2、代码中设置

ParserConfig.getGlobalInstance().setAutoTypeSupport(true); 

如果有使用非全局ParserConfig则用另外调用setAutoTypeSupport(true);

转载于:https://my.oschina.net/kolnick/blog/1524282

你可能感兴趣的:(解决 com.alibaba.fastjson.JSONException: autoType is not support)