类 RequestContext


  • public class RequestContext
    extends Object
    Context holder for request-specific state, like the MessageSource to use, current locale, binding errors, etc. Provides easy access to localized messages and Errors instances.

    Suitable for exposition to views, and usage within FreeMarker templates and tag libraries.

    Can be instantiated manually or automatically exposed to views as a model attribute via AbstractView's "requestContextAttribute" property.

    从以下版本开始:
    5.0
    作者:
    Rossen Stoyanchev
    • 方法详细资料

      • getModel

        @Nullable
        public Map<String,​ObjectgetModel()
        Return the model Map that this RequestContext encapsulates, if any.
        返回:
        the populated model Map, or null if none available
      • changeLocale

        public void changeLocale​(Locale locale)
        Change the current locale to the specified one.
      • changeLocale

        public void changeLocale​(Locale locale,
                                 TimeZone timeZone)
        Change the current locale to the specified locale and time zone context.
      • setDefaultHtmlEscape

        public void setDefaultHtmlEscape​(boolean defaultHtmlEscape)
        (De)activate default HTML escaping for messages and errors, for the scope of this RequestContext.

        TODO: currently no application-wide setting ...

      • isDefaultHtmlEscape

        public boolean isDefaultHtmlEscape()
        Is default HTML escaping active? Falls back to false in case of no explicit default given.
      • getDefaultHtmlEscape

        @Nullable
        public Boolean getDefaultHtmlEscape()
        Return the default HTML escape setting, differentiating between no default specified and an explicit value.
        返回:
        whether default HTML escaping is enabled (null = no explicit default)
      • getContextUrl

        public String getContextUrl​(String relativeUrl)
        Return a context-aware URl for the given relative URL.
        参数:
        relativeUrl - the relative URL part
        返回:
        a URL that points back to the current web application with an absolute path also URL-encoded accordingly
      • getContextUrl

        public String getContextUrl​(String relativeUrl,
                                    Map<String,​?> params)
        Return a context-aware URl for the given relative URL with placeholders -- named keys with braces {}. For example, send in a relative URL foo/{bar}?spam={spam} and a parameter map {bar=baz,spam=nuts} and the result will be [contextpath]/foo/baz?spam=nuts.
        参数:
        relativeUrl - the relative URL part
        params - a map of parameters to insert as placeholders in the url
        返回:
        a URL that points back to the current web application with an absolute path also URL-encoded accordingly
      • getRequestPath

        public String getRequestPath()
        Return the request path of the request. This is useful as HTML form action target, also in combination with the original query string.
      • getQueryString

        public String getQueryString()
        Return the query string of the current request. This is useful for building an HTML form action target in combination with the original request path.
      • getMessage

        public String getMessage​(String code,
                                 String defaultMessage)
        Retrieve the message for the given code, using the "defaultHtmlEscape" setting.
        参数:
        code - the code of the message
        defaultMessage - the String to return if the lookup fails
        返回:
        the message
      • getMessage

        public String getMessage​(String code,
                                 @Nullable
                                 Object[] args,
                                 String defaultMessage)
        Retrieve the message for the given code, using the "defaultHtmlEscape" setting.
        参数:
        code - the code of the message
        args - arguments for the message, or null if none
        defaultMessage - the String to return if the lookup fails
        返回:
        the message
      • getMessage

        public String getMessage​(String code,
                                 @Nullable
                                 List<?> args,
                                 String defaultMessage)
        Retrieve the message for the given code, using the "defaultHtmlEscape" setting.
        参数:
        code - the code of the message
        args - arguments for the message as a List, or null if none
        defaultMessage - the String to return if the lookup fails
        返回:
        the message
      • getMessage

        public String getMessage​(String code,
                                 @Nullable
                                 Object[] args,
                                 String defaultMessage,
                                 boolean htmlEscape)
        Retrieve the message for the given code.
        参数:
        code - the code of the message
        args - arguments for the message, or null if none
        defaultMessage - the String to return if the lookup fails
        htmlEscape - if the message should be HTML-escaped
        返回:
        the message
      • getErrors

        @Nullable
        public Errors getErrors​(String name)
        Retrieve the Errors instance for the given bind object, using the "defaultHtmlEscape" setting.
        参数:
        name - the name of the bind object
        返回:
        the Errors instance, or null if not found
      • getErrors

        @Nullable
        public Errors getErrors​(String name,
                                boolean htmlEscape)
        Retrieve the Errors instance for the given bind object.
        参数:
        name - the name of the bind object
        htmlEscape - create an Errors instance with automatic HTML escaping?
        返回:
        the Errors instance, or null if not found
      • getModelObject

        @Nullable
        protected <T> T getModelObject​(String modelName)
        Retrieve the model object for the given model name, either from the model or from the request attributes.
        参数:
        modelName - the name of the model object
        返回:
        the model object
      • getBindStatus

        public BindStatus getBindStatus​(String path)
                                 throws IllegalStateException
        Create a BindStatus for the given bind object using the "defaultHtmlEscape" setting.
        参数:
        path - the bean and property path for which values and errors will be resolved (e.g. "person.age")
        返回:
        the new BindStatus instance
        抛出:
        IllegalStateException - if no corresponding Errors object found
      • getBindStatus

        public BindStatus getBindStatus​(String path,
                                        boolean htmlEscape)
                                 throws IllegalStateException
        Create a BindStatus for the given bind object, using the "defaultHtmlEscape" setting.
        参数:
        path - the bean and property path for which values and errors will be resolved (e.g. "person.age")
        htmlEscape - create a BindStatus with automatic HTML escaping?
        返回:
        the new BindStatus instance
        抛出:
        IllegalStateException - if no corresponding Errors object found