Sebastien Deleuze
2e6059f6b0
Add coroutines support to RSocket @MessageMapping
...
Closes gh-22780
2019-04-30 15:48:18 +02:00
Sebastien Deleuze
842e7e5ef7
Add RSocketRequester coroutines extensions
...
See gh-22780
2019-04-30 09:36:35 +02:00
Rossen Stoyanchev
089fb5737d
Replace create with wrap in RSocketRequester
2019-04-29 17:12:28 -04:00
Rossen Stoyanchev
a1ad0285ca
Default MimeType selection for RSocketRequester
...
Remove the dataMimeType argument on connect methods. Applications can
still configure it through the ClientRSocketFactory but it shouldn't
be necessary as we now choose a default MimeType from the supported
encoders and decoders.
Add an option to provide the RSocketStrategies instance (vs customizing
it) which is expected in Spring config where an RSocketStrategies
instance may be shared between client and server setups.
2019-04-29 15:22:01 -04:00
Rossen Stoyanchev
8888a65079
Polish RSocketRequester
2019-04-29 12:03:49 -04:00
Sebastien Deleuze
5cd6763193
Add CBOR codec (single value only)
...
This commit adds CBOR reactive support for single value only in
order to allow CBOR usage in RSocket. Notice that no CBOR support
is configured on WebFlux, this will require gh-20513 to be resolved.
Closes gh-22767
2019-04-29 13:13:37 +02:00
Juergen Hoeller
3d502d90e2
Add missing nullable declarations
...
See gh-22821
2019-04-26 23:10:18 +02:00
Juergen Hoeller
f8dc8523da
Merge branch '5.1.x'
2019-04-26 23:00:40 +02:00
Phillip Webb
87dba5a4df
Fix MergedAnnotations javadoc
2019-04-26 13:59:16 -07:00
Juergen Hoeller
1f473261a8
Polishing
2019-04-26 22:56:23 +02:00
Phillip Webb
55ac110f7b
Fix LinkedCaseInsensitiveMap collection methods
...
Ensure that results returned from keySet, entrySet & values are tracked
to remove case insensitive keys from the source map.
Closes gh-22821
2019-04-26 11:17:51 -07:00
Juergen Hoeller
c4bd5abc3b
Nullability refinements and related polishing
2019-04-26 17:41:43 +02:00
Juergen Hoeller
55418b256d
Merge branch '5.1.x'
2019-04-26 16:56:04 +02:00
Juergen Hoeller
e5e2d2d661
Polishing (includes minor performance refinements from master)
2019-04-26 16:51:18 +02:00
Juergen Hoeller
bdd9a557a5
Streamline ReactiveAdapterRegistry.getAdapter usage
...
Closes gh-22842
2019-04-26 16:49:16 +02:00
Sebastien Deleuze
0016f58a80
Upgrade dependency management plugin to 1.0.7
2019-04-26 13:34:47 +02:00
Sebastien Deleuze
f5816c9219
Upgrade Gradle to 5.4.1
2019-04-26 13:33:51 +02:00
Sebastien Deleuze
c59acde34e
Upgrade Kotlin plugin to 1.3.31
2019-04-26 13:32:25 +02:00
Sebastien Deleuze
5221c3000e
Upgrade to Coroutines 1.2.1
2019-04-26 11:44:57 +02:00
Sebastien Deleuze
92c190fabf
Upgrade to Kotlin 1.3.31
2019-04-26 11:44:39 +02:00
Phillip Webb
83cb51aec6
Add MergedAnnotation.getRoot() method
...
Update `MergedAnnotation` with a `getRoot()` method that allows the
root direct annotation to be retrieved easily.
Closes gh-22818
2019-04-25 14:14:03 -07:00
Stephane Nicoll
7cc132b2a9
Merge pull request #22836 from izeye
...
* pr/22836:
Add missing fail() calls in MockRestServiceServerTests
2019-04-25 17:35:19 +03:00
Johnny Lim
33ac14f099
Add missing fail() calls in MockRestServiceServerTests
...
Closes gh-22836
2019-04-25 17:34:50 +03:00
Juergen Hoeller
ad497c259a
Merge branch '5.1.x'
2019-04-25 14:55:04 +02:00
Juergen Hoeller
42fda0ba15
Upgrade to Tomcat 9.0.19, Jetty 9.4.17, Netty 4.1.35, OkHttp 3.14.1
...
Includes upgrade to Hibernate ORM 5.3.10 (for branch 5.1.x)
2019-04-25 14:32:37 +02:00
Juergen Hoeller
168a5159b8
Log ClassCastException from lambda-defined listener at trace level
...
Closes gh-22834
2019-04-25 14:31:57 +02:00
Juergen Hoeller
0cfab87b1f
Revise isEligibleValue javadoc towards BeanUtils.isSimpleValueType
...
See gh-22816
2019-04-25 14:31:09 +02:00
Christoph Dreis
29d021ae3c
Avoid possible memory leak in ResolvableType
2019-04-23 21:07:35 +02:00
Sebastien Deleuze
cd5dc84832
Improve WebFlux suspending handler method support
...
This commit leverages Flux instead of Flow to support suspending
handler methods returning Flow in order to avoid multiple invocations
of the suspending function on every collect().
See gh-22820
2019-04-23 17:20:40 +02:00
Brian Clozel
b33d2f4634
Fix checkstyle errors
2019-04-23 15:10:11 +02:00
Brian Clozel
02904121a3
Add RSocketRequest.Builder in Spring Messaging
...
Prior to this commit, `RSocketRequester` would have a single
`RSocketRequester.create` static method taking a fully built
`RSocket` as an argument. Developers need to build an `RSocket`
instance using the `RSocketFactory` and then use it to create
a requester.
To help developers set up a requester, this commit adds a new
`RSocketRequester.Builder` interface and implementation. The
`RSocket` building phase and codecs configuration are part of a
single call chain. Subscribing to the returned
`Mono<RSocketRequester>` will configure and connect to the remote
RSocket server.
This design should be improved in gh-22798, since we will need to
support metadata in a broader fashion.
Closes gh-22806
2019-04-23 14:06:15 +02:00
Yanming Zhou
900abfce47
Temporal should be simple value type like Date
2019-04-23 12:55:18 +02:00
水木今山
574dffb60b
Some trivial optimization in method populateBean() ( #22792 )
...
Optimize the number of getResolvedAutowireMode() method calls
2019-04-23 12:48:21 +02:00
Sebastien Deleuze
aee2df8919
Improve WebFlux suspending handler method support
...
Support for suspending handler methods introduced in Spring
Framework 5.2 M1 does not detect types correctly and does not
support suspending handler methods returning Flow which is a
common use case with WebClient.
This commit fixes these issues and adds Coroutines integration
tests.
Closes gh-22820
Closes gh-22827
2019-04-23 11:32:32 +02:00
Sam Brannen
dab90cb7cc
Test status quo for MergedAnnotation.getParent()
...
See gh-22818
2019-04-21 16:32:09 +02:00
Sam Brannen
e5d64e6680
Remove dead code in HttpHeadersTests
2019-04-21 15:33:53 +02:00
Sam Brannen
4a090922d7
Polish Javadoc
2019-04-21 15:33:53 +02:00
Sam Brannen
e187a42bfc
Introduce failing tests for HttpHeaders
...
See gh-22821
2019-04-21 15:20:24 +02:00
Rossen Stoyanchev
fe92486cca
Expose status in SubProtocolWebSocketHandler
...
Closes gh-22807
2019-04-18 23:11:08 -04:00
Rossen Stoyanchev
87dd62a4a3
Merge branch '5.1.x'
2019-04-18 22:49:35 -04:00
Rossen Stoyanchev
42fc4a35d5
Ensure flush after StreamingResponseBody
...
Closes gh-22813
2019-04-18 22:49:23 -04:00
Rossen Stoyanchev
c09e711eb2
Unwrap Optional for @RequestParam reverse resolution
...
Closes gh-22656
2019-04-18 22:40:12 -04:00
Rossen Stoyanchev
4e63153886
Upgrade RSocket snapshot version
2019-04-18 12:49:36 -04:00
Rossen Stoyanchev
dbc45319b3
Merge branch '5.1.x'
2019-04-18 11:51:34 -04:00
Rossen Stoyanchev
1a97a26eb7
Disable response caching when controller resolves ETag
...
See gh-22797
2019-04-18 11:50:43 -04:00
Rossen Stoyanchev
86835e8e5a
Merge branch '5.1.x'
2019-04-17 14:23:44 -04:00
Rossen Stoyanchev
13c746ae9d
Follow-up fix for #5b711a
...
Not only do we need to preserve Mono in writeWith in the base class
but also in ReactorServerHttpResponse where buffers are mapped.
See gh-22800
2019-04-17 13:18:01 -04:00
Rossen Stoyanchev
60d6b5a922
Add mutate method to RSocketStrategies
...
Closes gh-22799
2019-04-17 13:11:34 -04:00
Сергей Цыпанов
18af3892dd
Make inner classes static where possible
...
Closes gh-22804
2019-04-17 19:05:24 +02:00
Rossen Stoyanchev
261dcab8ce
Merge branch '5.1.x'
2019-04-17 12:34:22 -04:00