提交 2b3fb2f5 编写于 作者: J Juergen Hoeller

Polishing

上级 56d669f8
...@@ -69,7 +69,7 @@ public abstract class AbstractFallbackTransactionAttributeSource implements Tran ...@@ -69,7 +69,7 @@ public abstract class AbstractFallbackTransactionAttributeSource implements Tran
* <p>As this base class is not marked Serializable, the cache will be recreated * <p>As this base class is not marked Serializable, the cache will be recreated
* after serialization - provided that the concrete subclass is Serializable. * after serialization - provided that the concrete subclass is Serializable.
*/ */
final Map<Object, TransactionAttribute> attributeCache = new ConcurrentHashMap<>(1024); private final Map<Object, TransactionAttribute> attributeCache = new ConcurrentHashMap<>(1024);
/** /**
......
...@@ -40,7 +40,7 @@ import org.springframework.web.server.WebSession; ...@@ -40,7 +40,7 @@ import org.springframework.web.server.WebSession;
/** /**
* Represents a server-side HTTP request, as handled by a {@code HandlerFunction}. * Represents a server-side HTTP request, as handled by a {@code HandlerFunction}.
* Access to headers and body is offered by {@link Headers} and * Access to headers and body is offered by {@link Headers} and
* {@link #body(BodyExtractor)} respectively. * {@link #body(BodyExtractor)}, respectively.
* *
* @author Arjen Poutsma * @author Arjen Poutsma
* @author Sebastien Deleuze * @author Sebastien Deleuze
...@@ -154,8 +154,8 @@ public interface ServerRequest { ...@@ -154,8 +154,8 @@ public interface ServerRequest {
} }
/** /**
* Return all path variables. * Return all path variables for the current request.
* @return the path variables * @return a {@code Map} from path variable name to associated value
*/ */
Map<String, String> pathVariables(); Map<String, String> pathVariables();
......
...@@ -78,7 +78,7 @@ public interface ServerResponse { ...@@ -78,7 +78,7 @@ public interface ServerResponse {
* @return the created builder * @return the created builder
*/ */
static BodyBuilder from(ServerResponse other) { static BodyBuilder from(ServerResponse other) {
Assert.notNull(other, "'other' must not be null"); Assert.notNull(other, "Other ServerResponse must not be null");
DefaultServerResponseBuilder builder = new DefaultServerResponseBuilder(other.statusCode()); DefaultServerResponseBuilder builder = new DefaultServerResponseBuilder(other.statusCode());
return builder.headers(other.headers()); return builder.headers(other.headers());
} }
...@@ -362,7 +362,6 @@ public interface ServerResponse { ...@@ -362,7 +362,6 @@ public interface ServerResponse {
* @return the built response * @return the built response
*/ */
Mono<ServerResponse> render(String name, Map<String, ?> model); Mono<ServerResponse> render(String name, Map<String, ?> model);
} }
} }
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册