Examples of HelloJson


Examples of com.test.sample.model.HelloJson

  }

  @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;
  }
View Full Code Here

Examples of com.test.sample.model.HelloJson

  }

  @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;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.