Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Converting a POJO to Map [duplicate]

I have the following:

public class ChargeRequest {
    @Expose
    private String customerName;
    @Expose
    private String stripeToken;
    @Expose
    private String plan;
    @Expose
    private String[] products;

    gettersAndSetters()...

    public Map<String, Object> toMap() {
        return gson.fromJson(this, new TypeToken<Map<String, Object>>() {
        }.getType());
    }

    public String toString() {
        return gson.toJson(this, getClass());
    }
}

I'm trying to convert ChargeRequest into a Map<String, Object> with Gson.

My adapter:

public static class JsonAdapter implements  JsonDeserializer<ChargeRequest>{
        @Override
        public ChargeRequest deserialize(JsonElement json, Type typeOfT, JsonDeserializationContext context) throws JsonParseException {
            ChargeRequest cr = new ChargeRequest();
            JsonObject o = json.getAsJsonObject();
            o.add("customerName", o.get("customerName"));
            o.add("stripeToken", o.get("stripeToken"));
            o.add("plan", o.get("plan"));
            JsonArray jProds = o.get("products").getAsJsonArray();
            cr.products = new String[jProds.size()];
            for (int i = 0; i < jProds.size(); i++) {
                cr.products[i] = jProds.get(i).getAsString();
            }
            return cr;
        }
}

I'm getting: Type information is unavailable, and the target is not a primitive for the array of strings. what's wrong?

Final update: I've finally decided to move back to Jackson and everything works as expected.

Code:

ObjectMapper om = new ObjectMapper();
Map<String, Object> req = om.convertValue(request, Map.class);
like image 523
Muli Yulzary Avatar asked Dec 08 '22 20:12

Muli Yulzary


1 Answers

Post a simple version:

public final static Map<String, Object> pojo2Map(Object obj) {
    Map<String, Object> hashMap = new HashMap<String, Object>();
    try {
        Class<? extends Object> c = obj.getClass();
        Method m[] = c.getMethods();
        for (int i = 0; i < m.length; i++) {
            if (m[i].getName().indexOf("get") == 0) {
                String name = m[i].getName().toLowerCase().substring(3, 4) + m[i].getName().substring(4);
                hashMap.put(name, m[i].invoke(obj, new Object[0]));
            }
        }
    } catch (Throwable e) {
        //log error
    }
    return hashMap;
}
like image 130
yukuan Avatar answered Dec 11 '22 10:12

yukuan