TA的每日心情 | 开心 2021-3-12 23:18 |
---|
签到天数: 2 天 [LV.1]初来乍到
|
<%
Person person = new Person();
person.setName("张三");
request.setAttribute("person",person);
%>
<bean:write name="person"/> <br><!-- 输出person,执行toString() -->
<bean:write name="person" property="name"/> <!-- 输出属性值 -->
<br/>下面是有关"bean:cookie":
<br>
<bean:cookie id="sessionId" name="JSESSIONID"/><!-- 获取Cookie JSESSIONID放进变量 -->
<bean:write name="sessionId" property="value"/><br>
<br>以下是有关地址栏参数action:
<bean:parameter id="action" name="action"/><!-- 获取地址栏参数action,放进变量 -->
<bean:write name="action"/><br>
<br>以下是有关主机名称:
<bean:header id="host" name="host"/>
<bean:write name="host"/> <!-- 输出变量值 -->
<br>
输出web.xml中的内容:<br>
<bean:resource id="web_info" name="/WEB-INF/web.xml"/>
<bean:write name="web_info"/>
<br>将外部文件包含进来:
<br>
<bean:include id="Google" href="http://www.google.com"/>
<bean:write name="google" filter="false"/>
|
|