- 20 Sep, 2019 10 commits
-
-
Brian Clozel authored
This commit warns developers about the fact that plugging RSocket into an existing web server is only possible with Reactor Netty web servers. RSocket itself is using Reactor Netty, so this is why we can plug an RSocket over websocket handler in an existing Reactor Netty handler. This feature is not possible with other web servers, as existing APIs do not make that possible. Fixes gh-17494
-
Andy Wilkinson authored
Closes gh-18265
-
Andy Wilkinson authored
-
Brian Clozel authored
After a change in Spring Framework (see spring-projects/spring-framework#23314), the `RouteMatcher` to be used with the RSocket infrastructure is configured on the `RSocketStrategies` directly. This commit moves the auto-configuration of the `PathPatternRouteMatcher` from the message handling parts to the RSocket strategy one. Closes gh-17571
-
Andy Wilkinson authored
* gh-16091: Polish "Support zip64 jars" Support zip64 jars Closes gh-16091
-
Andy Wilkinson authored
See gh-16091
-
Camille Vienot authored
See gh-16091
-
Andy Wilkinson authored
Closes gh-17234
-
Stephane Nicoll authored
* pr/18288: Fix a broken Asciidoctor syntax Closes gh-18288
-
Johnny Lim authored
Along the way, this commit also fixes a typo. See gh-18288
-
- 19 Sep, 2019 11 commits
-
-
Madhura Bhave authored
-
Madhura Bhave authored
-
Andy Wilkinson authored
Fixes gh-18278
-
Andy Wilkinson authored
Closes gh-17008
-
Stephane Nicoll authored
Closes gh-18283
-
Stephane Nicoll authored
* pr/18270: Fix pre-defined logging group documentation Closes gh-18270
-
Alessandro Falappa authored
See gh-18270
-
Stephane Nicoll authored
* pr/18281: Polish Closes gh-18281
-
Johnny Lim authored
See gh-18281
-
Stephane Nicoll authored
-
Stephane Nicoll authored
Closes gh-18277
-
- 18 Sep, 2019 10 commits
-
-
Andy Wilkinson authored
Closes gh-17008
-
Brian Clozel authored
Prior to this commit, Spring Boot would use `Schedulers.elastic()` when required to process blocking tasks in a reactive environment. reactor/reactor-core#1804 introduced a new scheduler, `Schedulers.boundedElastic()` that behaves quite similarly but: * will limit the number of workers thread * will queue tasks if no worker thread is available and reject them is the queue is exceeds a limit This allows Spring Boot to schedule blocking tasks as before and allows greater flexibility. Fixes gh-18269 See gh-18276
-
Andy Wilkinson authored
Closes gh-17435
-
Andy Wilkinson authored
* gh-11779: Use try-with-resources in HttpTunnelPayload Closes gh-11779
-
rajadilipkolli authored
See gh-11779
-
Andy Wilkinson authored
Closes gh-18274
-
Andy Wilkinson authored
Closes gh-18242
-
Andy Wilkinson authored
* gh-18262: Add Graal checks ahead of some interactions with ClassLoader methods Closes gh-18262
-
Andy Clement authored
See gh-18262
-
Andy Wilkinson authored
Closes gh-18267
-
- 17 Sep, 2019 7 commits
-
-
Andy Wilkinson authored
Closes gh-18178
-
Andy Wilkinson authored
* gh-18249: Fix typos in HealthContributors definition Closes gh-18249
-
Alessandro Falappa authored
See gh-18249
-
Andy Wilkinson authored
* gh-18248: Remove duplicated row from HealthIndicators table Closes gh-18248
-
Alessandro Falappa authored
See gh-18248
-
Andy Wilkinson authored
Previously, Reactor Netty was the only embedded server that enabled H2C by default. This commit updates the factory to only enable HTTP/2 when SSL has also been configured, aligning it with Jetty, Tomcat, and Undertow. If H2C is required, it can be enabled using a NettyServerCustomizer: @Bean NettyServerCustomizer h2cCustomizer() { return (httpServer) -> httpServer.protocol(HttpProtocol.HTTP11, HttpProtocol.H2C); } Closes gh-17867
-
Andy Wilkinson authored
Closes gh-16289
-
- 16 Sep, 2019 2 commits
-
-
Stephane Nicoll authored
Closes gh-18239
-
Stephane Nicoll authored
This commit makes sure that any subsequent call on addProtocolResolver on the context will impact the ResourceLoader implementation that DevTools sets on the context. This makes sure that any custom ProtocolResolver that is set later in the lifecycle is taken into account. Closes gh-17214
-