📄 product.jsp
字号:
<%@ page language="java" contentType="text/html" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core" %>
<html>
<head>
<title>Product Description</title>
</head>
<body bgcolor="white">
<jsp:useBean id="catalog" scope="application"
class="com.ora.jsp.beans.shopping.CatalogBean"
/>
<%-- Get the specified ProductBean from the catalog --%>
<c:set var="product" value="${catalog.productsById[param.id]}" />
<h1>
<c:out value="${product.name}" />
</h1>
<c:out value="${product.descr}" />
<p>
<c:url var="addtocartURL" value="addtocart.jsp">
<c:param name="id" value="${product.id}" />
</c:url>
<a href="<c:out value="${addtocartURL}" escapeXml="false" />">
Add this book to the shopping cart</a>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -