<bean:define>标签用于定义一个变量.id属性指定变量的名字,toScope属性指定变量存放范围,如果没有设置toScope属性,则变量存放在page范围内.
给id属性定义变量赋值方式:
1.设置value属性,此时id属性定义的变量为字符串(String)类型,value属性代表这个变量的字符串值.
<bean:define id="str" value="Hello MLDN...."></bean:define>
可以通过jsp的EL语言${str}来取得或者><bean:write name="str"></bean:write>来取得值
2.同时设定name和property属性.name属性指定一个已经存在的bean,property属性指定已经存在的bean中的某个属性,id属性定义的变量值由property属性决定:
<%request.setAttribute("sessionBean",session);%>
<bean:define id="contextBean" name="sessionBean" property="servletContext"/>
Servlet Context name:<bean:write name="contextBean" property="servletContextName"/>
例:建立一个jsp页面:
<%@ page language="java" contentType="text/html;charset=gb2312"%> <%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %> <html:html lang="true"> |