Package com.lei.dao

Examples of com.lei.dao.ProductDao.save()


    pro.setId(id);
    pro.setName(name);
    pro.setPrice(2);
    pro.setShangjia(true);
 
    pd.save(pro);
    response.sendRedirect("product.jspx?task=all");
  }

  private void all(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
   
View Full Code Here


   
    pro.setId(id);
    pro.setName(name);
    pro.setPrice(price);
    pro.setShangjia(true);
    pd.save(pro);
   
    List<Product> list=pd.findAll();
   
    PrintWriter out=response.getWriter();
    out.print("<?xml version=\"1.0\" encoding=\"UTF-8\"?>");
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.