会话和请求的对象

发布于 2024-07-15 08:40:42 字数 94 浏览 6 评论 0原文

在struts中,session对象在哪里创建& 哪个类或方法创建它? 同样,请求对象是在哪里创建的? 哪个类或方法调用它?

提前致谢

In struts, where does the session object created & which class or method creates it? Likewise where does the request object created & which class or method invokes it?

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

晒暮凉 2024-07-22 08:40:42

请求对象是在 servlet 容器(tomcat/jetty/其他容器)内创建的。

会话基本上是由在 HttpServletRequest。 通常,只有当有人真正声明他们需要会话时,Web 框架才会执行此操作。 如果您想知道何时发生这种情况,我建议您在 IDE 中使用“转到实现”并设置断点并运行应用程序(注意有两个重载)

The request object is created inside your servlet container (tomcat/jetty/whatever).

The session is basically created by whoever calls getSession on HttpServletRequest first. Normally web frameworks do this only when someone actually declares they need the session. If you want to find out when this happens, I suggest you use "go to implementation" in your IDE and set a breakpoint and run the application (note there are two overloads)

泛泛之交 2024-07-22 08:40:42
import com.opensymphony.xwork2.ActionSupport;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.SessionAware;

public class MyAction extends ActionSupport implements SessionAware,ServletRequestAware
{
    Map<String,Object> session;
    HttpServletRequest servletRequest;

    public void setSession(Map<String, Object> session) {

        this.session = session;
    }

    public void setServletRequest(HttpServletRequest hsr) {
       this.servletRequest=hsr;
    }

    public String execute()
    {
       return SUCCESS;
    }
}

每当调用此操作时,首先调用 setServletRequest,然后调用 setSession()。

请求的对象& session 由您正在使用的 Web 容器创建并传递给相应的方法。

import com.opensymphony.xwork2.ActionSupport;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import org.apache.struts2.interceptor.ServletRequestAware;
import org.apache.struts2.interceptor.SessionAware;

public class MyAction extends ActionSupport implements SessionAware,ServletRequestAware
{
    Map<String,Object> session;
    HttpServletRequest servletRequest;

    public void setSession(Map<String, Object> session) {

        this.session = session;
    }

    public void setServletRequest(HttpServletRequest hsr) {
       this.servletRequest=hsr;
    }

    public String execute()
    {
       return SUCCESS;
    }
}

Whenever this action is called setServletRequest is called first and then setSession().

The object of request & session are created by the web container you are using and passed to corresponding methods.

冷夜 2024-07-22 08:40:42

在 Struts 中,ActionForm 实例可以存储在 HttpSessionHttpServletRequest 中。

它取决于 struts-config.xml 文件内 action 标记中定义的范围

ActionForm 通常使用 action-form 标记中定义的名称进行存储。

In Struts an ActionForm instance can be stored in the HttpSession or in the HttpServletRequest.

It depends on the scope defined in the action tag inside the struts-config.xml file.

An ActionForm usually gets stored using the name defined in the action-form tag.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文