Package com.isfasiel.util.data

Examples of com.isfasiel.util.data.Data.toList()


  @RequestMapping(value="/sample.do")
  public String go(Model model) throws Exception {
    System.out.println(fileProp.getProperty("baseDir"));
    System.out.println(fileProp.getProperty("mineType"));
    Data result = sampleService.insert(getParam());
    model.addAttribute("result", result.toList());
    return "test";
  }
 
  @RequestMapping(value="/sample/create/{id}/{name}")
  public String create(@PathVariable("id") int id, @PathVariable("name") String name) throws Exception {
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.