com.google.gson.internal.LinkedTreeMap cannot be cast to entity

问题:
后台报错: com.google.gson.internal.LinkedTreeMap cannot be cast to com.xie.Teacher
原因json转list的时候类型没写正确
解决办法:

import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
Type listType = new TypeToken>() {}.getType();
        List list=JsonUtil.fromJson(jsonStr, listType);
        for(int i=0;i
            System.out.println(list.get(i).getName());
        }

        String jsonResult=JsonUtil.toJson("");
        return jsonResult;

你可能感兴趣的:(java)