spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
The `WebClientSenderConfiguration` contains the auto-configuration for the `WebClient` based Zipkin sender. The `RestTemplate` based one honors the timeouts from the `ZipkinProperties`, while the `WebClient` based one does not. Unfortunately there...
Our test support has a `TestCompiler` (`org.springframework.boot.testsupport.compiler.TestCompiler`). Now that Spring Framework has a test module that ships with a more powerful variant, we should remove ours and adapt our existing...
As discussed with @dmikusa-pivotal, @mhalbritter and @scottfrederick, we need to integrate [GraalVM metadata repository](https://github.com/oracle/graalvm-reachability-metadata) in Buildpacks in addition to Native Build Tools current support (see #31687) in order to allow...
This is a WIP proposal for ReactorKafka auto-configuration. It is a modification of the original proposal in that it leverages the already existing producer/consumer from KafkaProperties as well as supports...
I noticed that when I have a Spring Boot test, and the context fails to initialize, the Banner is printed twice, and I decided to look into why. ``` //...
At the moment, the `ThreadDumpEndpoint` is not usable in a native image, as GraalVM doesn't implement thread dumping yet. I've opened an issue for that: https://github.com/oracle/graal/issues/4714 When that issue is...
As of now, we need at least GraalVM 22.1 for native image support. This is currently not in the docs, add it.
`spring.mvc.throw-exception-if-no-handler-found=true` requires additional configuration to be effective because default `+spring.mvc.static-path-pattern=/**+` collides it. This PR explains correlation, which is confusing. The confusion was reported in https://github.com/spring-projects/spring-boot/issues/9263 and others
Got this warning in my log: ``` o.s.c.annotation.AnnotationTypeMapping : Support for convention-based annotation attribute overrides is deprecated and will be removed in Spring Framework 6.1. Please annotate the 'endpoint' attribute...