}
@RequestMapping(value = "/hello/json", view = View.JSON)
public Object helloJson(HttpServletResponse response,
HttpServletRequest request) {
HelloJson helloJson = new HelloJson();
helloJson.setId(3);
helloJson.setText("测试json");
return helloJson;
}