我在控制器是否有可能在Spring MVC 4返回布爾值爲JSON?
@RequestMapping("admin")
public @ResponseBody
Boolean admin() {
Boolean success = true;
return success;
}
有一個簡單的方法,並在響應我想返回{ "success": true }
Annontation @ResponseBody
說,響應將是JSON。但現在在repsonse,我接受的只是真實的。
難道還有其他方法如何解決嗎?
,或者我應該做這樣的事情
@RequestMapping("admin")
public @ResponseBody
Map<String, Boolean> admin() {
Map<String, Boolean> success = new TreeMap<String, Boolean>();
success.put("success", true);
return success;
}
我想知道這個最佳實踐。