GSON is not being imported into the maven project

前端 未结 4 1443
孤城傲影
孤城傲影 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 07:54

    Add these import:

    import com.google.gson.Gson;
    import com.google.gson.GsonBuilder;
    

提交回复
热议问题