编程语言
首页 > 编程语言> > write javaBean error, fastjson version 1.2.76, class org.apache.flink.table.data.binary

write javaBean error, fastjson version 1.2.76, class org.apache.flink.table.data.binary

作者:互联网

在使用静态变量Map作为返回时,抛出了异常

com.alibaba.fastjson.JSONException: write javaBean error, fastjson version 1.2.76, class org.apache.flink.table.data.binary.BinaryStringData, fieldName : id, Memory segment does not represent off heap memory

其余代码不变,只返回一个空的新Map,结果正常,证明是里面的字段编码出现了问题,所以可以对其重新进行编码
for (Map<String, Object> map : FakerConstant.TABLE_ROW_DATA_RESULT) {
            Map<String, Object> m = new HashMap<>();
            map.forEach((key, value) -> {
                m.put(
                        // 需要对其重新编码, 否则报FastJson异常 write javaBean error, fastjson version 1.2.76
                        new String(key.getBytes(), StandardCharsets.UTF_8),
                        new String(String.valueOf(value).getBytes(), StandardCharsets.UTF_8)););
            });
            res.add(m);
        }

标签:fastjson,binary,String,1.2,Map,write,javaBean
来源: https://blog.csdn.net/qq_44741568/article/details/122824337