spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
Hello 👋 At the risk of sounding a bit slow, I'd like to raise awareness of something that's bothering me a little: The state of the `management.*` configuration properties, and...
I was wanting to make use of `@ConditionalOnProperty` in a project recently and expected it to evaluate false if the value of the property was `null`, however it seems that...
Right now, tests driven by `@SpringBootTest` whirr up an application and a side effect is the spring boot logo in the logs. This isn't so much a problem the first...
Curently the printing of the banner in log mode (spring.main.banner-mode="log") only works correctly (correctly = displays unicode characters the correct way, without surrogate glyphs) if spring.banner.charset matches file.encoding. The banner...
Envrionment: upgrade from Spring2.6.x to SpringBoot3.2.0 Scenario: I want to use custom jsp tagLib in **production war** scenario , my startup command similar with java -jar fool.war ```shell ├── resources...
If I provide a `Jackson2ObjectMapperBuilderCustomizer` with `@Order(Ordered.HIGHEST_PRECEDENCE)` it gets applied before the boot default customizer in `JacksonAutoConfiguration`. This is to be expected. What is not expected however is that the...
By default, the compiler attempts to discover annotation processors from the classpath. This can have side effect on code that is generated ahead of time. Adding `-proc:none` in the Maven...
Output from my own plugin test, built with Gradle 8.6: The task 'bootStartScripts' (org.gradle.jvm.application.tasks.CreateStartScripts) is not a subclass of the given type (org.gradle.api.tasks.application.CreateStartScripts) Shouldn't custom tasks prefer the API versions...
Is there a possibility to manage `jakarta.inject:jakarta.inject-api` in spring boot?
I could not find a way to further modify the `PoolingHttpClientConnectionManagerBuilder` (or `HttpClientBuilder`) that Spring Boot creates without essentially duplicating Spring Boot defaults and then applying customizations. Spring Cloud OpenFeign...