<%@ page import="com.lovecoding.doman.Brand" %> <%@ page import="java.util.ArrayList" %> <%@ page import="java.util.List" %> <%@ page import="java.util.Iterator" %><%-- Created by IntelliJ IDEA. User: 武恒 Date: 2023/2/6 Time: 14:42 To change this template use File | Settings | File Templates. --%> <%@ page contentType="text/html;charset=UTF-8" language="java" %> Title <% // 查询数据库 List brands = new ArrayList(); brands.add(new Brand(1,"三只松鼠","三只松鼠",100,"三只松鼠,好吃不上火",1)); brands.add(new Brand(2,"优衣库","优衣库",200,"优衣库,服适人生",0)); brands.add(new Brand(3,"小米","小米科技有限公司",1000,"为发烧而生",1)); %>

商品表格

<% Iterator iterator = brands.iterator(); while ( iterator.hasNext() ) { Brand next = iterator.next(); %> <% } %>
序号 LOGO 商品 企业
<%=next.getId()%> <%=next.getBrandName()%> <%=next.getCompanyName()%>
<% /** * JSP 四大域 数据的作用域 * page 只限于 当前页面 * request 只限于一次请求 * session 只限于一次会话 * application 整个应用 */ %>