GSON is not being imported into the maven project

前端 未结 4 1442
孤城傲影
孤城傲影 2020-12-06 06:58

I am getting the following error - I have added the GSon in my dependency -

Can someone point out what I am doing wrong?

4条回答
  •  抹茶落季
    2020-12-06 08:00

    Try:

    
         com.alibaba
         fastjson
         1.1.21
    
    

    Very fast, simple to use.

    VO obj = ...;
    String jsonString = JSON.toJSONString(obj);
    
    VO obj2 = JSON.parseObject(jsonString, VO.class);
    

提交回复
热议问题