Java tutorial
/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package ThuaDatControllers; import java.util.List; import model.ThuaDatControl; import model.postgresCont; import model.tblThuaDat; import org.springframework.stereotype.Controller; import org.springframework.ui.Model; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.servlet.ModelAndView; /** * * @author cuongdx */ @Controller public class ThuaDatController { @RequestMapping(value = "/hello", method = RequestMethod.GET) public String printHelloWorld(Model model) { model.addAttribute("message", "Xin cho cc bn"); return "hello"; } @RequestMapping(value = "/index", method = RequestMethod.GET) public String index() { return "index"; } @RequestMapping(value = "/xemdanhsachthua", method = RequestMethod.GET) public ModelAndView XemDanhSach(Model model) { postgresCont c = new postgresCont(); ThuaDatControl d = new ThuaDatControl(); List<tblThuaDat> lstThua = d.getAllLands(); return new ModelAndView("viewThuaDat", "lstThua", lstThua); } }