@WebServlet(value = "/index", loadOnStartup = 1) public class IndexServlet extends HttpServlet { @Override public void init() throws ServletException { Product p1 = new Product("1", "huawei_mate50", 5999.0, "new huawei"); Product p2 = new Product("2", "iphone13", 5899.0, "new iphone"); Product p3 = new Product("3", "mi10", 5555.0, "mi"); Product p4 = new Product("4", "onePlus10", 5000.0, "one"); Product p5 = new Product("5", "oppo", 5000.0, "one"); List<Product> productList = new ArrayList<>(); productList.add(p1); productList.add(p2); productList.add(p3); productList.add(p4); productList.add(p5); getServletContext().setAttribute("products", productList); } protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { } protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { response.setContentType("text/html;charset=utf-8"); List<Product> productList = (List<Product>) getServletContext().getAttribute("products"); for (Product product : productList) { String item = response.encodeURL(request.getContextPath() + "/item?id=" + product.getId()); response.getWriter().println("<a href='" + item + "'>" + product.getName() + "</a>"); } response.getWriter().println("浏览足迹为:"); History.showRecentViews(request, response); } }
时间: 2024-04-28 08:21:43 浏览: 98
jsp 编程之@WebServlet详解
这段代码是一个 Java Servlet,它的作用是在访问 /index 页面时,在页面上展示一些商品链接,并显示用户的浏览足迹。在 init() 方法中,创建了一个包含 5 个产品的 List,然后将其存储在 ServletContext 中,以便在整个应用程序中共享。在 doGet() 方法中,获取存储在 ServletContext 中的产品列表,遍历每个产品,生成商品链接并输出到页面上。最后,调用历史记录类 History 的 showRecentViews() 方法,展示用户最近浏览过的商品。这段代码有些问题,比如没有处理异常等,但是主要功能已经实现。
阅读全文