204 changed files with 266 additions and 32 deletions
@ -1,6 +1,6 @@
@@ -1,6 +1,6 @@
|
||||
/** |
||||
* Provides {@link org.springframework.core.codec.Encoder} and |
||||
* {@link org.springframework.core.codec.Decoder} abstractions for converting |
||||
* to and from between a stream of bytes and a stream of Java objects. |
||||
* {@link org.springframework.core.codec.Encoder} and |
||||
* {@link org.springframework.core.codec.Decoder} abstractions to convert |
||||
* between a reactive stream of bytes and Java objects. |
||||
*/ |
||||
package org.springframework.core.codec; |
||||
|
||||
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
/** |
||||
* Generic abstraction for working with byte buffer implementations. |
||||
*/ |
||||
package org.springframework.core.io.buffer; |
||||
@ -0,0 +1,4 @@
@@ -0,0 +1,4 @@
|
||||
/** |
||||
* Support classes for Spring's byte buffer abstraction. |
||||
*/ |
||||
package org.springframework.core.io.buffer.support; |
||||
@ -1,5 +1,6 @@
@@ -1,5 +1,6 @@
|
||||
/** |
||||
* This package provides support for various strategies to resolve the requested |
||||
* content type for a given request. |
||||
* {@link org.springframework.web.reactive.accept.RequestedContentTypeResolver} |
||||
* strategy and implementations to resolve the requested content type for a |
||||
* given request. |
||||
*/ |
||||
package org.springframework.web.reactive.accept; |
||||
|
||||
@ -1,5 +1,4 @@
@@ -1,5 +1,4 @@
|
||||
/** |
||||
* Provides standard HandlerMapping implementations, |
||||
* including abstract base classes for custom implementations. |
||||
* Provides HandlerMapping implementations including abstract base classes. |
||||
*/ |
||||
package org.springframework.web.reactive.handler; |
||||
|
||||
@ -1,6 +1,5 @@
@@ -1,6 +1,5 @@
|
||||
/** |
||||
* Support for mapping requests based on a |
||||
* {@link org.springframework.web.reactive.result.condition.RequestCondition |
||||
* RequestCondition} type hierarchy. |
||||
* {@link org.springframework.web.reactive.result.condition.RequestCondition} |
||||
* and implementations for matching requests based on different criteria. |
||||
*/ |
||||
package org.springframework.web.reactive.result.condition; |
||||
|
||||
@ -1,6 +1,7 @@
@@ -1,6 +1,7 @@
|
||||
/** |
||||
* Support for various programming model styles including the invocation of |
||||
* different types of handlers (e.g. annotated controllers, simple WebHandler, |
||||
* etc) as well as result handling (@ResponseBody, view resolution, etc). |
||||
* different types of handlers, e.g. annotated controller vs simple WebHandler, |
||||
* including the handling of handler result values, e.g. @ResponseBody, view |
||||
* resolution, and so on. |
||||
*/ |
||||
package org.springframework.web.reactive.result; |
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue