Vedran Pavic
Vedran Pavic
At present, Actuator sessions endpoint is supported only on a Servlet stack and also requires an indexed session repository. With Spring Session moving to non-indexed session repositories as a default...
With its current API where all operations are of blocking nature, `AuditEventRepository` cannot be properly implemented using a non-blocking data store and is therefore not really suitable for use on...
At present, both Spring MVC and Spring WebFlux auto-configurations hardcode path pattern for WebJars resource handlers to `/webjars/**` which means users are unable to change the path. This commit introduces...
This commit updates Servlet based Spring Security auto-configuration to use `AuthorizationFilter`, which is intended to superseed `FilterSecurityInterceptor`. See note in [Authorize HttpServletRequests with AuthorizationFilter section](https://docs.spring.io/spring-security/reference/6.0.0-M5/servlet/authorization/authorize-http-requests.html) of Spring Security's reference manual....
Previously, I was able to disable Spring MVC's trailing slash matching using something like this: ```java @Configuration(proxyBeanMethods = false) class WebMvcConfiguration { @Bean WebMvcRegistrations webMvcRegistrations() { return new WebMvcRegistrations() {...
Currently, `FirebaseMessaging` (and `InstanceIdClient` that it delegates to) provides support for subscribing to the topic and unsubscribing. However, to be able to fully (and reliably) manage topics from the server,...
Several tests from `WebClientIntegrationTests` are failing for me locally when port 80 is in use. To reproduce this ensure the build is not pulling results from the cache. ```bash $...
The intro of reference manual section [_1. Spring Web MVC_](https://docs.spring.io/spring-framework/docs/6.0.x/reference/html/web.html#mvc) states that: > For baseline information and compatibility with Servlet container and Jakarta EE version ranges, see the Spring Framework...
At present, creating `LoggingCacheErrorHandler` with custom logger requires use of Commons Logging API, as the appropriate constructor expects `org.apache.commons.logging.Log` instance. As Commons Logging is rarely the logging framework of choice...