1.通过ActionContext (推荐) 2.通过ServletActionContext 3.通过实现接口方式 ...
1.开发环境搭建 2.简单应用 我们在index.jsp里面这样写: <a href="TestActionContext.action?name=zhoujing&age=21">Test ActionContext</a> <% if(application.getAttribute("date ...
分类:
其他好文 时间:
2017-07-19 23:38:35
阅读次数:
229
1、在执行action后,如果要在所跳转的目标页面中显示信息,则要用到Action和Session。 2、在Struts2中,Action已经与Servlet API分离,这使得Action具有更加灵活和低耦合的特性。 3、Struts2提供了ActionContext类;ActionContext ...
分类:
其他好文 时间:
2017-07-13 01:05:46
阅读次数:
222
1 import org.lxh.mvcdemo.factory.DAOFactory; 2 import org.lxh.mvcdemo.vo.User; 3 4 import com.opensymphony.xwork2.ActionContext; 5 import com.opensymp... ...
分类:
Web程序 时间:
2017-07-11 09:37:36
阅读次数:
163
1.模板:当我输入syso时给我打印System.out.println(); act->ActionContext.getContext().put("departmentList", departmentList); window->preferences->templates->new->na ...
分类:
系统相关 时间:
2017-06-30 12:25:50
阅读次数:
203
action获取表单提交数据,有三种方式: 1、根据ActionContext对象获取; 2、利用ServletActionContext类获取表单数据;(其实就是可以获取HttpServletRequest对象) 3、利用接口注入的方式获取表单数据;实现接口(ServletRequestAware ...
分类:
其他好文 时间:
2017-06-25 10:20:44
阅读次数:
162
ActionContext ActionContext是Action的上下文,Struts2自动在其中保存了一些在Action执行过程中所需的对象,比如session, parameters, locale等。Struts2会根据每个执行HTTP请求的线程来创建对应的ActionContext,即一 ...
分类:
其他好文 时间:
2017-06-23 17:25:11
阅读次数:
216
在 java 中, 常见的 Context 有很多, 像: ServletContext, ActionContext, ServletActionContext, ApplicationContext, PageContext, SessionContext ... 那么, Context 究竟是 ...
分类:
编程语言 时间:
2017-06-19 19:37:02
阅读次数:
206
关于值栈: helloWorld时,${productName}读取productName值,实际上该属性并不在request等域中,而是从值栈中获取的。 ValueStack: 可以从ActionContext中获取值栈对象 值栈分为两个逻辑部分: 1.Map栈:实际上是OgnlCOntext类型 ...
分类:
其他好文 时间:
2017-06-09 23:40:06
阅读次数:
213
struts2中action手动获取Session,jsp页面參数 1. ActionContext 在Struts2开发中,除了将请求參数自己主动设置到Action的字段中,我们往往也须要在Action里直接获取请求(Request)或会话(Session)的一些信息, 甚至须要直接对JavaSe ...
分类:
其他好文 时间:
2017-06-07 20:51:11
阅读次数:
201