spring-framework
spring-framework copied to clipboard
Spring Framework
`DispatcherServlet` calls `sendError(404)` by default in case of no matching handler, or raises `NoHandlerFoundException` when its property `throwExceptionIfNoHandlerFound` is enabled, allowing applications to handle it, which is important for REST...
When running multiple tests the application contexts are not closed after each test class, which is the defined behavior. If multiple tests are starting a Quartz Scheduler, this may lead...
See https://github.com/spring-projects/spring-boot/issues/32262 for background. Currently we have a number of areas where we want to exclude beans from being used in AOT processed applications. There are a number of ways...
Since all `URL` constructors are deprecated starting with Java 20, we should stop using them in order to allow Spring Framework to be built using Java 20. In addition, the...
This PR changes to use `EnumMap` for `DateFormatter.ISO_PATTERNS` again by partially reverting ba136dcf40123445aa959786cdc006112d35774a as it seems to give better numbers as follows: ``` Benchmark (iso) Mode Cnt Score Error Units...
When a filter is configured to conditionally forward, and it is configured to handle FORWARD dispatches as well, and it prevents infinite forward loops by either extending `OncePerRequestFilter` or otherwise...
**Affects:** : Spring Web 6.0.0-RC2 --- The methods annotated with `@HttpExchange` work great using Reactor, but unfortunately it's currently unable to use `suspend` functions in its method signatures. This is...
Hi, I would like to request for `@EntityScan` to be able to provide the ability to scan for specific entities class, rather than based on package. E.g `@EntityScan(classes={"com.aa.ClassA", "com.aa.ClassB"))` will...
When running tests using `@DirtiesContext` and a test class includes multiple `@Nested` classes, the context is dirtied and refreshed after each nested class, even when using the coarsest mode possible...