📄 sample2.jsp
字号:
<%@ page language="java" contentType="text/html; charset=gb2312"%>
<jsp:useBean id="splBean" class="ch6.SampleBean2"/>
<html>
<head>
<title>在JavaBean中存放数据</title>
</head>
<body>
<jsp:setProperty name="splBean" property="id" value="${param.id}" />
<jsp:setProperty name="splBean" property="age" value="${param.age}"/>
<center>
编号:<jsp:getProperty name="splBean" property="id" /><br>
年龄:<jsp:getProperty name="splBean" property="age" /><br>
</center>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -