fastjson版本升级后执行程序报 autoType is not support. 可以考虑通过以下两种方式解决:
在通过JSON, JSONArray, JSONObject, JSONPath, TypeUtil等工具类进行 json 处理时,其ParserConfig是全局唯一的,因此可以通过修改全局对象的方式进行白名单设置。
static { ParserConfig.getGlobalInstance().addAccept("com.toman.json1"); ParserConfig.getGlobalInstance().addAccept("com.toman.json2"); }也可以通过jvm启动参数添加
-Dfastjson.parser.autoTypeAccept=com.toman.json1,com.toman.json2可以通过在类路径下添加fastjson.properties文件,在文件中进行白名单配置。
fastjson.parser.autoTypeAccept=com.toman.json1,com.toman.json2同样打开autoType也有多种方式。
与添加白名单使用相同的全局对象。
static { ParserConfig.getGlobalInstance().setAutoTypeSupport(true); }与白名单配置类似,需要在配置文件中进行如下配置。
fastjson.parser.autoTypeSupport=trueFastJson autoType is not support 阿里巴巴fastjson的使用问题