在Struts2中,可以使用EL表達式(Expression Language)來顯示Action中的數(shù)據(jù)。
首先,在JSP頁面中導(dǎo)入Struts2標(biāo)簽庫:
<%@taglib prefix="s" uri="/struts-tags"%>
然后,使用EL表達式來顯示Action中的數(shù)據(jù):
<s:property value="propertyName" />
其中,propertyName是Action中的屬性名。
示例:
假設(shè)有一個名為UserAction的Action類,其中有一個名為username的屬性,可以在JSP頁面中使用EL表達式來顯示該屬性的值:
<s:property value="username" />
這樣,頁面就會顯示UserAction中的username屬性的值。