码迷,mamicode.com
首页 >  
搜索关键字:actioncontext    ( 237个结果
Struts(3) 访问servlet
第一种是通过ActionContext来实现;首先通过ActionContext类的静态方法getContext来获取实例;然后可以通过相应的方法就可以获取不同域中的对象;Map getApplication() Map中保存的是ServletContext作用域的对象Map getSession(...
分类:其他好文   时间:2014-06-21 14:34:32    阅读次数:312
域对象的引用,ActionContext 和ServletActionContext类的使用
ActionContext 获取 域引用的mapServletActionContext获取具体域对象//域范围 ActionContext ac = ActionContext.getContext(); Map applicationMap = ac.getAppli...
分类:其他好文   时间:2014-06-06 17:23:42    阅读次数:183
OGNL表达式
1 2 OGNL是从ActionContext中获取数据的。 3 4 ActionContext的结构: 5 ValueStack: 6 List:动作类放在此处。取存放在ValueStack中的root的对象的属性,直接写即可 ...
分类:其他好文   时间:2014-06-05 19:26:57    阅读次数:471
【struts2】值栈(后篇)
在值栈(前篇)我们学习了值栈的基本知识,接下来,来看看在程序中具体如何使用值栈。 1ActionContext的基本使用 1.1如何获取? 要获取ActionContext有两个基本的方法,如果在不能获取到ActionInvocation的地方,可以直接使用ActionContext一个静...
分类:其他好文   时间:2014-05-21 20:00:09    阅读次数:260
【struts2】名为chain的ResultType
1)基本使用 名称为“chain”的ResultType,在struts-default.xml里的配置如下: chain是一种特殊的视图结果,用来将Action执行完之后链接到另一个Action中继续执行,新的Action使用上一个Action的上下文(ActionContext),数据也...
分类:其他好文   时间:2014-05-19 15:09:03    阅读次数:228
Struts2中使用execAndWait后,在 Action中调用getXXX()方法报告java.lang.NullPointerException异常的原因和解决方法
使用Struts2 编写页面,遇到一个要长时间运行的接口,因此增加了一个execAndWait ,结果在 Action 中调用 getContext()的时候报告异常1 ActionContext context = ActionContext.getContext();2 ServletConte...
分类:编程语言   时间:2014-05-12 12:58:38    阅读次数:470
session值的使用
将对象放入session: ActionContext.getContext().getSession().put("stu_id",id);将session值取出来使用: Integer id =(Integer) ActionContext.getContext().getSession().....
分类:其他好文   时间:2014-05-09 09:21:33    阅读次数:236
237条   上一页 1 ... 22 23 24
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!