spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
Support multipart uploads when Spring MVC uses a different management port Closes gh-18286
When including the `spring-boot-starter-oauth2-resource-server`, it would be nice if external requests made by Spring Security were included in the default Micrometer http client metrics. Including these would give visibility and...
We decided to not use `List.of()`, `Set.of()` and `Map.of()`, preferring `Collections.emptyList()`, etc. We should have a checkstyle rule to prevent creeping them accidentally in the codebase. Note that we only...
Lots of developers use .env to process own configuration for script or app. Now I add `spring.config.import` in application.properties as following: ``` spring.config.import=optional:file:.env ``` and SpringBoot app throws the following...
Framework changes to `AbstractContextLoader` mean we need to be able to return a non-refreshed context. We might need a new method on `SpringApplication` or to make the new Hook interface...
We should decide if we want to deprecate and later remove `@ControllerEndpoint` and `@RestControllerEndpoint` from the actuator. Using them ties the user to WebMVC or WebFlux and they were meant...
Spring Boot 2.6.9. I need to use two separate MockMvc beans because we are trying to use Spring REST Docs and it interferes with the request schema which breaks some...