Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <%@ import="my.package.ShoppingItem" %>
- <%@ import="java.util.Collection" %>
- <%@ contentType="text/html;charset=UTF-8" language="java"%>
- <jsp:useBean id="managed" class="my.package.ManagedBean" scope="session">
- <html>
- <head>
- <meta charset="utf-8">
- </head>
- <body>
- <table>
- <tr>
- <th>name</th>
- <th>price</th>
- <th>count</th>
- </tr>
- <%
- Collection<ShoppingItem> basket = mananged.getBasket();
- for (ShoppingItem position: basket){%>
- <tr>
- <td><%= position.getName() %></td>
- <td><%= position.getPrice() %></td>
- <td><%= position.getCount() %></td>
- </tr>
- <%}%>
- </table>
- </body>
Add Comment
Please, Sign In to add comment