Fastjosn 如何禁用 autotype
正文
autoType关闭方法:
– 方法一:
在项目源码中全文搜索 autoType 的启用代码,并将其删除
ParserConfig.getGlobalInstance().setAutoTypeSupport(true);
– 方法二:
在JVM中启动项目时,不要添加如下参数
-Dfastjson.parser.autoTypeSupport=true
autoType关闭方法:
– 方法一:
在项目源码中全文搜索 autoType 的启用代码,并将其删除
ParserConfig.getGlobalInstance().setAutoTypeSupport(true);
– 方法二:
在JVM中启动项目时,不要添加如下参数
-Dfastjson.parser.autoTypeSupport=true
Leave a Reply