Juergen Hoeller
ad497c259a
Merge branch '5.1.x'
6 years ago
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)
6 years ago
Juergen Hoeller
168a5159b8
Log ClassCastException from lambda-defined listener at trace level
...
Closes gh-22834
6 years ago
Juergen Hoeller
0cfab87b1f
Revise isEligibleValue javadoc towards BeanUtils.isSimpleValueType
...
See gh-22816
6 years ago
Christoph Dreis
29d021ae3c
Avoid possible memory leak in ResolvableType
6 years ago
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
6 years ago
Brian Clozel
b33d2f4634
Fix checkstyle errors
6 years ago
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
6 years ago
Yanming Zhou
900abfce47
Temporal should be simple value type like Date
6 years ago
水木今山
574dffb60b
Some trivial optimization in method populateBean() ( #22792 )
...
Optimize the number of getResolvedAutowireMode() method calls
6 years ago
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
6 years ago
Sam Brannen
dab90cb7cc
Test status quo for MergedAnnotation.getParent()
...
See gh-22818
6 years ago
Sam Brannen
e5d64e6680
Remove dead code in HttpHeadersTests
6 years ago
Sam Brannen
4a090922d7
Polish Javadoc
6 years ago
Sam Brannen
e187a42bfc
Introduce failing tests for HttpHeaders
...
See gh-22821
6 years ago
Rossen Stoyanchev
fe92486cca
Expose status in SubProtocolWebSocketHandler
...
Closes gh-22807
6 years ago
Rossen Stoyanchev
87dd62a4a3
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
42fc4a35d5
Ensure flush after StreamingResponseBody
...
Closes gh-22813
6 years ago
Rossen Stoyanchev
c09e711eb2
Unwrap Optional for @RequestParam reverse resolution
...
Closes gh-22656
6 years ago
Rossen Stoyanchev
4e63153886
Upgrade RSocket snapshot version
6 years ago
Rossen Stoyanchev
dbc45319b3
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
1a97a26eb7
Disable response caching when controller resolves ETag
...
See gh-22797
6 years ago
Rossen Stoyanchev
86835e8e5a
Merge branch '5.1.x'
6 years ago
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
6 years ago
Rossen Stoyanchev
60d6b5a922
Add mutate method to RSocketStrategies
...
Closes gh-22799
6 years ago
Сергей Цыпанов
18af3892dd
Make inner classes static where possible
...
Closes gh-22804
6 years ago
Rossen Stoyanchev
261dcab8ce
Merge branch '5.1.x'
6 years ago
Sam Brannen
52b6f9b56d
Align Javadoc for Base64Utils.encodeToString() with implementation
...
Closes gh-22812
6 years ago
Rossen Stoyanchev
30dbff340a
Upgrade to Reactor Dysprosium snapshots
6 years ago
Stephane Nicoll
2cfd2a33c8
Merge branch '5.1.x'
6 years ago
Stephane Nicoll
fa848805fb
Merge pull request #22809 from johnlinp
...
* pr/22809:
Polish "Remove PROPAGATION_ prefix in Javadoc"
Remove PROPAGATION_ prefix in Javadoc
6 years ago
Stephane Nicoll
b7415ec92c
Polish "Remove PROPAGATION_ prefix in Javadoc"
...
Closes gh-22809
6 years ago
John Lin
c0252f8758
Remove PROPAGATION_ prefix in Javadoc
...
See gh-22809
6 years ago
Rossen Stoyanchev
de3238dbea
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
5b711a964b
Pass Mono to Reactor Netty when feasible
...
Closes gh-22800
6 years ago
Rossen Stoyanchev
15b2fb1210
Polish
...
Replacing a couple of calls to Mono.fromCallable with Mono.just which
seems to work with doOnDiscard except when nested inside Flux.defer.
6 years ago
Rossen Stoyanchev
375090bb7c
LeakAwareDataBuffer related fixes
...
Following on 3ebbfa2191
where the local
refCount was removed in favor of using the internal refCount of the
native data buffer, this commit ensures that LeakAwareDataBufferFactory
uses a PooledDataBufferFactory delegate by default.
There are also fixes for test issues with eager allocation uncovered by
these changes in StringDecoder and ResourceDecoder.
6 years ago
Rossen Stoyanchev
ed650891ca
Add filter to add exchange to Reactor Context
...
Closes gh-21746
6 years ago
Sam Brannen
c99d904665
Upgrade to Gradle 5.4
...
Closes gh-22805
6 years ago
Rossen Stoyanchev
e4da7cb47f
Merge branch '5.1.x'
6 years ago
Rossen Stoyanchev
0109231d8e
Ensure Jackson generator flushed
...
Closes gh-22771
6 years ago
Sebastien Deleuze
e131815bab
Upgrade to Coroutines 1.2.0
6 years ago
Juergen Hoeller
44df98c82d
Merge branch '5.1.x'
6 years ago
Sebastien Deleuze
e84347554e
Ignore Kotlin script templating tests
...
Ignore these tests for the time being since they trigger
a NoClassDefFoundError exception with Kotlin 1.3.30.
6 years ago
Juergen Hoeller
722cd179cf
Clean up property values registration in SimpleWebApplicationContext
...
Closes gh-22787
6 years ago
Juergen Hoeller
b07d46da99
MockCookie compares attributes in case-insensitive manner
...
Closes gh-22786
6 years ago
Juergen Hoeller
49557471a9
Upgrade to AspectJ 1.9.3, Mockito 2.27, OpenPDF 1.2.16, POI 4.1
6 years ago
Juergen Hoeller
f9903bbf69
Upgrade to Kotlin 1.3.30, Mockito 2.27, MockK 1.9.3, AssertJ 3.12.2
...
This commit removes quartzVersion since it is only used once.
6 years ago
Juergen Hoeller
07738b9529
Recent fine-tuning from ASM master
...
See gh-22503
6 years ago
Rossen Stoyanchev
e27e54317f
Merge messaging related codec updates
6 years ago