解决 com.alibaba.fastjson.JSONException: autoType is not support
打开autotype功能
1、JVM启动参数
-Dfastjson.parser.autoTypeSupport=true
2、代码中设置
ParserConfig.getGlobalInstance().setAutoTypeSupport(true);
如果有使用非全局ParserConfig则用另外调用setAutoTypeSupport(true);
文章来自:http://www.cnblogs.com/kolnick/p/7200250.html