Springmvc getting HttpServletRequest objects in a normal class

Source: Internet
Author: User
Tags http request

Spring MVC takes 2 steps to get a HttpServletRequest object in a normal class:

1. Add the following configuration in the Web. xml file

<listener>
   	<listener-class>org.springframework.web.context.request.requestcontextlistener </ Listener-class>
</listener>

In the Requestcontextlistener class, there is the following code, where red is labeled as the key code:

public class Requestcontextlistener implements Servletrequestlistener {

...

...

...

public void requestinitialized (Servletrequestevent requestevent) {

if (! ( Requestevent.getservletrequest () instanceof HttpServletRequest)) {

throw new IllegalArgumentException ("");

}

HttpServletRequest request = (HttpServletRequest) requestevent.getservletrequest ();

Servletrequestattributes attributes = new Servletrequestattributes (request);

Request.setattribute (Request_attributes_attribute, ATTRIBUTES);

Localecontextholder.setlocale (Request.getlocale ());

Requestcontextholder.setrequestattributes (attributes);

}

...

...

...

}

public class Servletrequestattributes extends Abstractrequestattributes {

...

...

...

Private final httpservletrequest request;

...

...

...

/**

* Create A new Servletrequestattributes instance for the given request.

* @param request Current HTTP request

*/

Public servletrequestattributes (HttpServletRequest request) {

Assert.notnull (Request, "request must not is null");

This.request = Request;

}

}
2. Get the object in the normal class

HttpServletRequest request = ((servletrequestattributes) requestcontextholder.getrequestattributes ()). Getrequest ();


Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.