Home PC Games Linux Windows Database Network Programming Server Mobile  
           
  Home \ Programming \ ActionContext and ServletActionContext Summary     - Debugging with GDB tool Go (Programming)

- Manager Docker browser (Server)

- Adding SSH to Github (Linux)

- Teach you how to synchronize Microsoft OneDrive in Linux (Linux)

- Additional SQL Server 5123 database reported error (Database)

- Ubuntu file security removal tool (Linux)

- Unable to solve the official version of Android Studio online update problem (Linux)

- About Python default character set (Linux)

- Based kubernetes Construction Docker Cluster Management Comments (Server)

- Docker - for the development and deployment of unified lightweight Linux containers (Linux)

- About ORA-02391 solution (Database)

- The next key to install Linux bash script PowerShell (Linux)

- Drawing from the Android source code analysis View (Programming)

- Oracle 12CIN-memory in table spaces (Database)

- CentOS 6.5 installation using a data recovery software extundelete (Linux)

- Xmanager Remote Desktop login CentOS 6.5 (Linux)

- ld.so.conf.d profile (Linux)

- SELinux multi-level security (Linux)

- Revised OpenJDK Java Memory Model (Programming)

- Chromium Install Flash Official Guide (Linux)

 
         
  ActionContext and ServletActionContext Summary
     
  Add Date : 2018-11-21      
         
         
         
  1. ActionContext

In Struts2 development, in addition to the request parameters are automatically set to the Action field, we often need direct access request (Request) or Session (Session) some information in Action, or even require direct JavaServlet Http request (HttpServletRequest) ., the response (HttpServletResponse) operation we need to get the value of the request parameter request "username" in the Action:

ActionContext context = ActionContext.getContext ();
Map params = context.getParameters ();
String username = (String) params.get ( "username");
ActionContext (com.opensymphony.xwork.ActionContext) is executed in the context of Action, the context can be seen as a container (in fact, we have here the container is just a Map), which is stored in the implementation of Action need to use objects. generally, our ActionContext through: ActionContext context = (ActionContext) actionContext.get (); to get a look at us here actionContext create object:

static ThreadLocal actionContext = new ActionContextThreadLocal ();

ActionContextThreadLocal is to achieve an internal ThreadLocal class .ThreadLocal be named "thread-local variable", which use the variable for each thread provides a copy of the value of a variable so that each thread can independently change their copy, and not a copy of conflicts with other threads. thus, we ActionContext in the property only in the corresponding current request thread visible, so as to ensure that it is thread safe.

By ActionContext get HttpSession: Map session = ActionContext.getContext () getSession ();.

2. ServletActionContext

ServletActionContext (. Com.opensymphony.webwork ServletActionContext), this class directly inherited ActionContext we described above, which provides direct access to the object associated with the Servlet functionality, it can be made the object are:

(1) javax.servlet.http.HttpServletRequest: HTTPservlet request object

(2) javax.servlet.http.HttpServletResponse: HTTPservlet corresponding object

(3) javax.servlet.ServletContext: Servlet context information

(4) javax.servlet.ServletConfig: Servlet configuration object

(5) javax.servlet.jsp.PageContext: Http page context

How to get Servlet related objects from ServletActionContext in:

(1) obtain the HttpServletRequest object: HttpServletRequest request = ServletActionContext getRequest ();.

(2) to obtain the HttpSession object: HttpSession session = ServletActionContext getRequest () getSession ();..

3. ServletActionContext and ActionContext Contact

ServletActionContext and ActionContext has some duplicate functions in our Action, which is how to choose what principles we follow are:? If ActionContext to achieve our function, it is best not to use ServletActionContext on, let's try not to direct the Action Servlet to access related objects.

Note: When using ActionContext One thing to note: Do not use ActionContext.getContext in the constructor's in Action (), because some of the values ​​in this time ActionContext may not set, then the value may be obtained by ActionContext null; similarly, HttpServletRequest req = ServletActionContext.getRequest () constructor should also be avoided, and do not directly req as a class variable to their assignment. As for the reason, I think it was mentioned above the static ThreadLocal actionContext = new ActionContextThreadLocal (), from here we can see ActionContext is thread-safe, but ServletActionContext inherited from ActionContext, so ServletActionContext also thread-safe, thread-safety requirements for each thread are independent, so creating req also requires independent, so ServletActionContext.getRequest () this sentence not in the constructor, and do not directly on the class, and should be placed on each specific method body (eg : login (), queryAll (), insert (), etc.), so as to ensure the establishment of an independent req generated each time the object.

4. struts2 obtained request, response, and session

(1) Non-IoC way

Method One: Use org.apache.struts2.ActionContext class, gets the current Action context object through its static methods getContext ().

ActionContext ctx = ActionContext.getContext ();

ctx.put ( "liuwei", "andy"); //request.setAttribute("liuwei "," andy ");
Map session = ctx.getSession (); // session

HttpServletRequest request = ctx.get (org.apache.struts2.StrutsStatics.HTTP_REQUEST);
HttpServletResponse response = ctx.get (org.apache.struts2.StrutsStatics.HTTP_RESPONSE);
Careful friends can find here the session is a Map object, Struts2 in the bottom of the session it has been packaged in a Map type. We can directly manipulate objects on the Map session of the write and read operations, without having to directly manipulate HttpSession object.

Method 2: Use org.apache.struts2.ServletActionContext class

public class UserAction extends ActionSupport {
    
    // Other code fragment
    
    private HttpServletRequest req;
// Private HttpServletRequest req = ServletActionContext.getRequest (); this statement is wrong in this position, this same statement in the constructor method is wrong.

    public String login () {
        req = ServletActionContext.getRequest (); // req obtained must be implemented in specific method
        user = new User ();
        user.setUid (uid);
        user.setPassword (password);
        if (userDAO.isLogin (user)) {
            . Req.getSession () setAttribute ( "user", user);
            return SUCCESS;
        }
        return LOGIN;
    }
    public String queryAll () {
        req = ServletActionContext.getRequest (); // req obtained must be implemented in specific method
        uList = userDAO.queryAll ();
        req.getSession () setAttribute ( "uList", uList).;
        return SUCCESS;
    }
    
    // Other code fragment
}

(2) IoC mode (ie using Struts2 Aware interceptors)

To use IoC way, we must first tell IoC container (Container) want to get the wishes of an object, by implementing the appropriate interface to do so.

public class UserAction extends ActionSupport implements SessionAware, ServletRequestAware, ServletResponseAware {

    private HttpServletRequest request;
    private HttpServletResponse response;

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

    public void setServletResponse (HttpServletResponse response) {
        this.response = response;
    }

    public String execute () {
        HttpSession session = request.getSession ();
        return SUCCESS;
    }
}
     
         
         
         
  More:      
 
- Linux System Getting Started Tutorial: How to find the maximum memory your system supports (Linux)
- How a lot of blocking malicious IP address in Linux (Linux)
- How to view information about the installed version of CentOS (Linux)
- Redis application of Sina Weibo (Database)
- Linux platform NTOP Installation and Configuration (Linux)
- sa weak passwords intrusion prevention (Linux)
- Source install Python3.4 on CentOS (Linux)
- Thinking in Java study notes - Generics (Programming)
- Nmcli based network management command-line tool (Linux)
- CentOS 6.6 source compiler GCC upgrade to 4.8.2 (Linux)
- Oracle ORA-01691 error message, a single data file size limit problem (Database)
- VirtualBox modify the size of the virtual machine disk VDI (Linux)
- Java memory analysis tool uses detailed MAT (Programming)
- Linux install Maven and SVN client (Linux)
- Download Manager uGet 2.0 installed in Debian, Ubuntu, Linux Mint and Fedora (Linux)
- The PostgreSQL database pg_dump command line does not enter a password method (Database)
- Connect to the Oracle Database Help class (Database)
- Red Hat Linux mount U disk (Linux)
- Installation in lxml Python module (Linux)
- C language function pointer and a callback function (Programming)
     
           
     
  CopyRight 2002-2022 newfreesoft.com, All Rights Reserved.