先执行action处理好类里面的变量,然后通过Strust2的标签来获得action类里面变量的值。
<% @ taglib prefix = " s " uri = " /struts-tags " %>
< html >
< head >
< title > Hello World! </ title >
</ head >
< body >
< h2 >< s:property value ="message" /></ h2 >
</ body >
</ html >
在action的类里面有一个message的变量。
方法二、用ValueStack实现
<%
//获取封的ValueStack对象
ValueStack vs=(ValueStack)request.getAttribute("struts.valueStack");
%>
< html >
< head >
< title > Hello World! </ title >
</ head >
< body >
< h2 ><%=vs.findString("message") %></ h2 >
</ body >
</ html >