Examples of BeerExpert


Examples of com.example.model.BeerExpert

   * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
   */
  protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
    String c = request.getParameter("color");

    BeerExpert be = new BeerExpert();
   
    List<String> recomends = be.getBrands(c);

    request.setAttribute("recomends", recomends);
   
    RequestDispatcher view = request.getRequestDispatcher("result.jsp");
    view.forward(request, response);
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.