一般的json都是String类型的,参考如下代码:
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONObject;
ScheduledTaskConfig scheduledTaskConfig=new ScheduledTaskConfig();
String json= JSON.toJSONString(scheduledTaskConfig);//关键
String res = "{\"result\": \"success\",\"msg\": \"登陆成功\"}";
JSONObject jsonObject = JSONObject.parseObject(res);
maven依赖使用的是
<dependency>
<groupId>com.alibaba</groupId>
<artifactId>fastjson</artifactId>
<version>1.2.47</version>
</dependency>