Struts2
weknow619
这个作者很懒,什么都没留下…
展开
-
【Struts2】Struts2底层原理简单模拟
class MyAction { private String name; private String pass; // getter和setter方法 public void setName(String name) { this.name = name; } public String getName() { return this.name; } public转载 2014-11-27 22:15:21 · 1830 阅读 · 0 评论 -
【Struts2】Struts2 : ActionContext和ServletActionContext小结
1. ActionContext 在Struts2开发中,除了将请求参数自动设置到Action的字段中,我们往往也需要在Action里直接获取请求(Request)或会话(Session)的一些信息,甚至需要直接对JavaServlet Http的请求(HttpServletRequest),响应(HttpServletResponse)操作. 我们需要在Action中取得request请求转载 2014-08-02 11:14:59 · 462 阅读 · 0 评论 -
【Struts2】Struts2 : ActionContext.getContext().getParameters()
webwork的action已经脱离的request,是用getXxx()来取提交过来的参数 如果在写程序的时候特定需要自己来取Parameter可以通过以下两种方法实现 第一种用ActionContext类,所有的参数都从这里ActionContext.getContext().getParameters()取 他返回的是一个Map类型 Map param= ActionContex转载 2014-08-02 11:02:15 · 855 阅读 · 0 评论 -
【Struts2】Struts2: ValueStack值栈
// 是从值栈里的ContextMap原创 2014-07-26 11:55:11 · 593 阅读 · 0 评论