@RequestMapping("/getAllScript.do")
@ResponseBody
public String getAllScript() throws Exception {
List<Script> scripts = das.queryAllScripts();
JsonConfig config = new JsonConfig();
config.registerJsonValueProcessor(Timestamp.class, new DateJsonValueProcessor());
JSONArray json = JSONArray.fromObject(scripts,config);
return json.toString();
}