You can use ObjectMapper
import com.fasterxml.jackson.databind.ObjectMapper;
public class YourClassDao {
private ObjectMapper objectMapper = new ObjectMapper();
public YourClass load(String json) throws IOException {
return objectMapper.readValue(
json, YourClass.class);
}
}
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…