1. 程式人生 > >返回物件object

返回物件object

示例:

    @RequestMapping("/createJSONObject")
    private Object createJSONObject() {  
        Map<String, Object> map=new HashMap<String, Object>();
        map.put("success", true);  
        map.put("totalCount", "30");  
        return map;  
    } 

這種方式不用導包、不用配置,比較簡單省事,值得推薦