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