Package org.apache.struts2
Class RequestUtils
java.lang.Object
org.apache.struts2.RequestUtils
Request handling utility class.
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionstatic StringgetServletPath(jakarta.servlet.http.HttpServletRequest request) Retrieves the current request servlet path.static StringgetUri(jakarta.servlet.http.HttpServletRequest request) Gets the uri from the requeststatic DateparseIfModifiedSince(String headerValue) Parse input string as date in formats defined for If-Modified-Since header, see: https://issues.apache.org/jira/browse/WW-4263 https://web.archive.org/web/20081014021349/http://rfc.net/rfc2616.html#p20
- 
Constructor Details- 
RequestUtilspublic RequestUtils()
 
- 
- 
Method Details- 
getServletPathRetrieves the current request servlet path. Deals with differences between servlet specs (2.2 vs 2.3+)- Parameters:
- request- the request
- Returns:
- the servlet path
 
- 
getUriGets the uri from the request- Parameters:
- request- The request
- Returns:
- The uri
 
- 
parseIfModifiedSinceParse input string as date in formats defined for If-Modified-Since header, see: https://issues.apache.org/jira/browse/WW-4263 https://web.archive.org/web/20081014021349/http://rfc.net/rfc2616.html#p20- Parameters:
- headerValue- value of If-Modified-Since header
- Returns:
- proper date or null
 
 
-