Andy Wilkinson
Andy Wilkinson
Spring Session's reactive support doesn't appear to have an equivalent of `FindByIndexNameSessionRepository` so the functionality of the current endpoint can't be ported over to a reactive view of the world....
See https://github.com/spring-projects/spring-session/issues/1711 for background. Spring Session's Redis module has switched to a simpler default repository implementation. This broke Boot's build as the simpler repository does not require a cleanup cron....
We currently expose more endpoints by default over JMX than we do over the web. For consistency, we've decided to change the default exposure over JMX to align it with...
With thanks to @rwinch, I've just learned that Boot doesn't work with Logback 1.3 (still in alpha). It fails on launch with the following exception: ``` java.lang.NoClassDefFoundError: org/slf4j/impl/StaticLoggerBinder at org.springframework.boot.logging.logback.LogbackLoggingSystem.getLoggerContext(LogbackLoggingSystem.java:273)...
Unlike Jetty, Tomcat, and Undertow, shutdown of an application that uses Reactor Netty is delayed by an active request. It appears to be delayed until the request completes. Looking at...
The upgrade to Micrometer 1.0 RC 6 included [this change](https://github.com/spring-projects/spring-boot/commit/ccc820f723416c20f3163509d30af9597f8b3d49#diff-d3cdbe75bfa3f7df310dcfc8c9685021R106) that's derived from [this change](https://github.com/micrometer-metrics/micrometer/commit/a6a667418ff4c5ca205d4c49ab2b3de4338cfae4) for https://github.com/micrometer-metrics/micrometer/pull/264. The intent was to avoid recording a 200 response for a request that's...