[color=blue][b]
写一个简单的HelloAction. 然后看看输出。
接着,就可以更深入地看看Object中的内容了。因为有些Object是map类型的。
再对照下ValueStack的概念图,明白了。(你很有钻研心,鼓励!!)[/b]
[/color]
[code="java"]public class HelloAction {
public String execute(){
Map<String , Object> map = ActionContext.getContext().getValueStack().getContext();
for(Entry<String,Object> entry : map.entrySet()){
System.out.println(entry.getKey()+" - "+entry.getValue()+" - "+entry.getValue().getClass().getName());
}
return "OK";
}
}[/code]