日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > javascript >内容正文

javascript

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

發布時間:2025/3/21 javascript 52 豆豆
生活随笔 收集整理的這篇文章主要介紹了 解决com.alibaba.fastjson.JSONException: autoType is not support 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

轉載自?https://blog.csdn.net/cdyjy_litao/article/details/72458538

?

最近發現進程運行日志中出現很多下面的日志:

?

  • com.alibaba.fastjson.JSONException:?autoType is not support. com.jd.ac.domain.api.offline.UserInfo
  • at com.alibaba.fastjson.parser.ParserConfig.checkAutoType(ParserConfig.java:882)
  • at com.alibaba.fastjson.parser.DefaultJSONParser.parseObject(DefaultJSONParser.java:322)
  • at com.alibaba.fastjson.parser.DefaultJSONParser.parse(DefaultJSONParser.java:1327)
  • at com.alibaba.fastjson.parser.deserializer.JavaObjectDeserializer.deserialze(JavaObjectDeserializer.java:45)
  • at com.alibaba.fastjson.parser.deserializer.FastjsonASMDeserializer_16_Order.deserialze(Unknown Source)
  • at com.alibaba.fastjson.parser.deserializer.JavaBeanDeserializer.deserialze(JavaBeanDeserializer.java:184)
  • at com.alibaba.fastjson.parser.DefaultJSONParser.parseObject(DefaultJSONParser.java:368)
  • at com.alibaba.fastjson.parser.DefaultJSONParser.parse(DefaultJSONParser.java:1327)
  • at com.alibaba.fastjson.parser.DefaultJSONParser.parse(DefaultJSONParser.java:1293)
  • at com.alibaba.fastjson.JSON.parse(JSON.java:137)
  • at com.alibaba.fastjson.JSON.parse(JSON.java:128)

?

網上查了下相關的資料,有幾篇分析可以參考:

http://www.tinygroup.org/docs/3281429682083150397

https://github.com/alibaba/fastjson/wiki/enable_autotype

?

大體原因就是使用fastjson的時候:序列化時將class信息寫入,反解析的時候,fastjson默認情況下會開啟autoType的檢查,相當于一個白名單檢查吧,如果序列化信息中的類路徑不在autoType中,反解析就會報上面的com.alibaba.fastjson.JSONException:?autoType is not support的異常

public Class<?> checkAutoType(String typeName, Class<?> expectClass) {
/* 805 */ if (typeName == null) {
/* 806 */ return null;
/* ? ? */ }
/* ? ? */
/* 809 */ String className = typeName.replace('$', '.');
/* ? ? */
/* 811 */ if ((this.autoTypeSupport) || (expectClass != null)) {
/* 812 */ for (int i = 0; i < this.acceptList.length; ++i) {
/* 813 */ String accept = this.acceptList[i];
/* 814 */ if (className.startsWith(accept)) {
/* 815 */ return TypeUtils.loadClass(typeName, this.defaultClassLoader);
/* ? ? */ }
/* ? ? */ }
/* ? ? */
/* 819 */ for (int i = 0; i < this.denyList.length; ++i) {
/* 820 */ String deny = this.denyList[i];
/* 821 */ if (className.startsWith(deny)) {
/* 822 */ throw new JSONException("autoType is not support. " + typeName);
/* ? ? */ }
/* ? ? */ }
/* ? ? */ }
/* ? ? */
/* 827 */ Class clazz = TypeUtils.getClassFromMapping(typeName);
/* 828 */ if (clazz == null) {
/* 829 */ clazz = this.deserializers.findClass(typeName);
/* ? ? */ }
/* ? ? */
/* 832 */ if (clazz != null) {
/* 833 */ if ((expectClass != null) && (!(expectClass.isAssignableFrom(clazz)))) {
/* 834 */ throw new JSONException("type not match. " + typeName + " -> " + expectClass.getName());
/* ? ? */ }
/* ? ? */
/* 837 */ return clazz;
/* ? ? */ }
/* ? ? */
/* 840 */ if (!(this.autoTypeSupport)) {
/* 841 */ for (int i = 0; i < this.denyList.length; ++i) {
/* 842 */ String deny = this.denyList[i];
/* 843 */ if (className.startsWith(deny)) {
/* 844 */ throw new JSONException("autoType is not support. " + typeName);
/* ? ? */ }
/* ? ? */ }
/* 847 */ for (int i = 0; i < this.acceptList.length; ++i) {
/* 848 */ String accept = this.acceptList[i];
/* 849 */ if (className.startsWith(accept)) {
/* 850 */ clazz = TypeUtils.loadClass(typeName, this.defaultClassLoader);
/* ? ? */
/* 852 */ if ((expectClass != null) && (expectClass.isAssignableFrom(clazz))) {
/* 853 */ throw new JSONException(
"type not match. " + typeName + " -> " + expectClass.getName());
/* ? ? */ }
/* 855 */ return clazz;
/* ? ? */ }
/* ? ? */ }
/* ? ? */ }
/* ? ? */
/* 860 */ if ((this.autoTypeSupport) || (expectClass != null)) {
/* 861 */ clazz = TypeUtils.loadClass(typeName, this.defaultClassLoader);
/* ? ? */ }
/* ? ? */
/* 864 */ if (clazz != null)
/* ? ? */ {
/* 866 */ if ((ClassLoader.class.isAssignableFrom(clazz)) ||
/* 867 */ (DataSource.class/* 867 */ .isAssignableFrom(clazz)))
/* ? ? */ {
/* 869 */ throw new JSONException("autoType is not support. " + typeName);
/* ? ? */ }
/* ? ? */
/* 872 */ if (expectClass != null) {
/* 873 */ if (expectClass.isAssignableFrom(clazz)) {
/* 874 */ return clazz;
/* ? ? */ }
/* 876 */ throw new JSONException("type not match. " + typeName + " -> " + expectClass.getName());
/* ? ? */ }
/* ? ? */
/* ? ? */ }
/* ? ? */
/* 881 */ if (!(this.autoTypeSupport)) {
/* 882 */?throw new JSONException("autoType is not support. " + typeName);
/* ? ? */ }
/* ? ? */
/* 885 */ return clazz;
/* ? ? */ }

?

參考 https://github.com/alibaba/fastjson/wiki/enable_autotype ?講解了3種方式添加autoType的白名單:

?

一、添加autotype白名單

?

添加白名單有三種方式,三選一,如下:

1. 在代碼中配置

ParserConfig.getGlobalInstance().addAccept("com.taobao.pac.client.sdk.dataobject.");

如果有多個包名前綴,分多次addAccept

2. 加上JVM啟動參數

-Dfastjson.parser.autoTypeAccept=com.taobao.pac.client.sdk.dataobject.,com.cainiao.

如果有多個包名前綴,用逗號隔開

3. 通過fastjson.properties文件配置。

在1.2.25/1.2.26版本支持通過類路徑的fastjson.properties文件來配置,配置方式如下:

fastjson.parser.autoTypeAccept=com.taobao.pac.client.sdk.dataobject.,com.cainiao. // 如果有多個包名前綴,用逗號隔開

二、打開autotype功能

如果通過配置白名單解決不了問題,可以選擇繼續打開autotype功能,fastjson在新版本中內置了多重防護,但是還是可能會存在一定風險。兩種方法打開autotype,二選一,如下:

1、JVM啟動參數

-Dfastjson.parser.autoTypeSupport=true

2、代碼中設置

ParserConfig.getGlobalInstance().setAutoTypeSupport(true);

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

總結

以上是生活随笔為你收集整理的解决com.alibaba.fastjson.JSONException: autoType is not support的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。