jsp검색페이징
JSP게시판 검색/페이징
Controller @RequestMapping(value = "/listPage", method = RequestMethod.GET) public String board(@RequestParam(value="keyword", required = false) String keyword, InvestNotice investNotice, Criteria cri, Model model) throws Exception{ if(keyword==null) { List board = investNoticeService.selectAllCri(cri); model.addAttribute("board", board); PageMaker pm = new PageMaker(); pm.setCri(cri); pm.setTot..