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