Java文件里,如何操作上下文
昨儿做梦梦到别人问怎么在java文件里操作上下文,一下子醒了。。。
Java文件里,操作上下文有两种方式;
咋赋值呢
ActionContext.getContext().put("a", 1);
ActionContext.getContext().getValueStack().setValue("#b", 2);
取值呢?
ActionContext.getContext().get("a", 1);
ActionContext.getContext().getValueStack().findValue("#b");
ActionContext.getContext().getValueStack().findValue("#a");
要总结才行。。好记性不如乱笔头啊。。