接口 ErrorAttributes

    • 方法概要

      所有方法 实例方法 抽象方法 
      修饰符和类型方法说明
      ThrowablegetError​(org.springframework.web.reactive.function.server.ServerRequest request)
      Return the underlying cause of the error or null if the error cannot be extracted.
      Map<String,​Object>getErrorAttributes​(org.springframework.web.reactive.function.server.ServerRequest request, boolean includeStackTrace)
      Return a Map of the error attributes.
      voidstoreErrorInformation​(Throwable error, org.springframework.web.server.ServerWebExchange exchange)
      Store the given error information in the current ServerWebExchange.
    • 方法详细资料

      • getErrorAttributes

        Map<String,​ObjectgetErrorAttributes​(org.springframework.web.reactive.function.server.ServerRequest request,
                                                    boolean includeStackTrace)
        Return a Map of the error attributes. The map can be used as the model of an error page, or returned as a ServerResponse body.
        参数:
        request - the source request
        includeStackTrace - if stack trace elements should be included
        返回:
        a map of error attributes
      • getError

        Throwable getError​(org.springframework.web.reactive.function.server.ServerRequest request)
        Return the underlying cause of the error or null if the error cannot be extracted.
        参数:
        request - the source ServerRequest
        返回:
        the Exception that caused the error or null
      • storeErrorInformation

        void storeErrorInformation​(Throwable error,
                                   org.springframework.web.server.ServerWebExchange exchange)
        Store the given error information in the current ServerWebExchange.
        参数:
        error - the Exception that caused the error
        exchange - the source exchange