Package com.test.sample.model

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


  }

  @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

Related Classes of com.test.sample.model.HelloJson

Copyright © 2018 www.massapicom. 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.