Example #1
0
 /*
  * 按出版社查
  */
 public String findByPress(HttpServletRequest req, HttpServletResponse resp)
     throws ServletException, IOException, SQLException {
   int pc = getPc(req);
   String url = getUrl(req);
   String press = req.getParameter("press");
   PageBean<Book> pb = bookService.findByPress(press, pc);
   pb.setUrl(url);
   req.setAttribute("pb", pb);
   return "f:/jsps/book/list.jsp";
 }