Fix broken links in JavaDoc

Issue: SPR-17174
This commit is contained in:
Sam Brannen
2018-08-13 12:22:52 +02:00
parent 13c090b41d
commit 8126ffbc8c
7 changed files with 21 additions and 16 deletions

View File

@@ -29,15 +29,16 @@ import org.springframework.lang.Nullable;
import org.springframework.util.CollectionUtils;
/**
* Implementation of {@link ResponseErrorHandler} that uses {@link HttpMessageConverter ResponseErrorHandler} that uses {@link HttpMessageConverters} to
* convert HTTP error responses to {@link RestClientException}.
* Implementation of {@link ResponseErrorHandler} that uses {@link HttpMessageConverter
* HttpMessageConverters} to convert HTTP error responses to {@link RestClientException
* RestClientExceptions}.
*
* <p>To use this error handler, you must specify a
* {@linkplain #setStatusMapping(Map) status mapping} and/or a
* {@linkplain #setSeriesMapping(Map) series mapping}. If either of these mappings has a match
* for the {@linkplain ClientHttpResponse#getStatusCode() status code} of a given
* {@code ClientHttpResponse}, {@link #hasError(ClientHttpResponse)} will return
* {@code true} and {@link #handleError(ClientHttpResponse)} will attempt to use the
* {@code true}, and {@link #handleError(ClientHttpResponse)} will attempt to use the
* {@linkplain #setMessageConverters(List) configured message converters} to convert the response
* into the mapped subclass of {@link RestClientException}. Note that the
* {@linkplain #setStatusMapping(Map) status mapping} takes precedence over

View File

@@ -26,8 +26,8 @@ import org.springframework.web.server.WebFilter;
import org.springframework.web.server.WebHandler;
/**
* {@link WebHandler} decorator that invokes a chain of {@link WebFilter WebHandler} decorator that invokes a chain of {@link WebFilters}
* before the delegate {@link WebHandler}.
* {@link WebHandlerDecorator} that invokes a chain of {@link WebFilter WebFilters}
* before invoking the delegate {@link WebHandler}.
*
* @author Rossen Stoyanchev
* @since 5.0

View File

@@ -1,5 +1,5 @@
/*
* Copyright 2002-2016 the original author or authors.
* Copyright 2002-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -23,7 +23,7 @@ import org.springframework.web.server.ServerWebExchange;
import org.springframework.web.server.WebHandler;
/**
* {@link WebHandler} that decorates and delegates to another.
* {@link WebHandler} that decorates and delegates to another {@code WebHandler}.
*
* @author Rossen Stoyanchev
* @since 5.0