有些特
殊情下,需要在JSP的<%%>java代码段中直接访问值栈内容。而不使用<s:property value="name"
/>获取,可以通过如下方式进行:
<%@ page import=
"com.opensymphony.xwork.ActionContext"
%>
String name = (String)ActionContext.getContext().getValueStack().findValue(
"name"
);
<%@
String