Package com.aspectran.web.support.util
Class WebUtils
java.lang.Object
com.aspectran.web.support.util.WebUtils
This class is a clone of org.springframework.web.util.WebUtils
Miscellaneous utilities for web applications. Used by various framework classes.-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final String
Standard Servlet 2.3+ spec request attribute for error page exception. -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic jakarta.servlet.http.Cookie
Retrieve the first cookie with the given name.static jakarta.servlet.http.Cookie
Retrieve the first cookie with the given name.
-
Field Details
-
ERROR_EXCEPTION_ATTRIBUTE
Standard Servlet 2.3+ spec request attribute for error page exception.To be exposed to JSPs that are marked as error pages, when forwarding to them directly rather than through the servlet container's error page resolution mechanism.
- See Also:
-
-
Constructor Details
-
WebUtils
public WebUtils()
-
-
Method Details
-
getCookie
@Nullable public static jakarta.servlet.http.Cookie getCookie(jakarta.servlet.http.HttpServletRequest request, String name) Retrieve the first cookie with the given name. Note that multiple cookies can have the same name but different paths or domains.- Parameters:
request
- current servlet requestname
- cookie name- Returns:
- the first cookie with the given name, or
null
if none is found
-
getCookie
Retrieve the first cookie with the given name. Note that multiple cookies can have the same name but different paths or domains.- Parameters:
translet
- current transletname
- cookie name- Returns:
- the first cookie with the given name, or
null
if none is found
-