spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
https://github.com/spring-projects/spring-boot/issues/31215 is a prerequisite for this. From the Gradle 7.5 release notes: > Tasks may need to access dependency resolution results. For example, built-in tasks like dependencies and dependencyInsight do...
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() {...
Spring boot webmvc service and spring boot webflux service have inconsistent behavior for http server requests metrics(prometheus). Webflux service exposes http_server_requests_seconds that includes metrics for management endpoints and service endpoints...
When #29698 has been finished in 2.7.x we should fully remove `spring.factories` support in 3.0.x
**Version** Spring Boot 2.7.1 **Description** We created a new `itest` source set in Gradle and when we run the test using `@SpringBootTest(webEnvironment = SpringBootTest.WebEnvironment.RANDOM_PORT)`, seems like the autoconfigure GraphQL components...
`SpringBootDependencyInjectionTestExecutionListener` tries to do this today but it doesn't work as calling `testContext.getApplicationContext()` after the failure results in a second attempt to create the context which also fails. #24888 hopes...
Inspired by #20747, it looks like it would be useful to provide a mechanism for customising the auto-configured `NimbusJwtDecoder`. The use case in #20747 is to provide a `RestTemplate` to...
We currently don't have metadata for `management.tracing.enabled`, which leads IDEs to show a warning: "property enabled doesn't exist."
Micrometer has added a [HTTP client TCK](https://github.com/micrometer-metrics/micrometer/pull/3258). To quote @shakuzen: > The idea of the TCK was just to cover common concepts across projects so we could ensure that regardless...
We'll need to have `org.springframework.boot:spring-boot` available as a dependency to the application under test. This'll require some reworking of how we integration test the plugin.