public class JsonUtils { public static void printTimeObject(Object obj, HttpServletResponse response, JsonConfig jsonConfig) throws IOException { JSONObject jsonObject = JSONObject.fromObject(obj, jsonConfig); setContentType(response); response.getWr…