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 values in the `spring.pulsar.client.authentication.param` config props map are not currently JSON encoded. For simple values this is fine. However, some custom auth modules may require more complex parameter values...
Issue after upgrading from version 2.0.4 to 2.0.5+. Startup fails with: `Caused by: org.springframework.beans.factory.BeanCurrentlyInCreationException: Error creating bean with name 'cacheManager': Requested bean is currently in creation: Is there an unresolvable...
```kotlin configurations { implementation { exclude(module = "spring-boot-starter-logging") } } dependencies { implementation("org.springframework.boot:spring-boot-starter") implementation("org.springframework.boot:spring-boot-starter-log4j2") testImplementation("org.springframework.boot:spring-boot-starter-test") } ``` ```java package com.example.demo; import org.junit.jupiter.api.Test; import org.springframework.boot.test.context.SpringBootTest; import org.springframework.jmx.support.MBeanServerFactoryBean; import static org.assertj.core.api.Assertions.assertThat; @SpringBootTest...
I' run with quite weird issue lets say we have endpoint with POST ``` @PostMapping("/info") public void getGameTransactions(@RequestBody String body) { } ``` and produce request ``` GET http://localhost:8080/info Accept:...
artemis 2.19 / spring boot 2.7.8 I searched why a native broker connection does not recover fast after restarting broker, but takes 10 min to recover. I found spring.jms.cache.enable=false solves...
I'd like for the following quote in the [Graceful Shutdown](https://docs.spring.io/spring-boot/docs/current/reference/htmlsingle/#web.graceful-shutdown) documentation to be clarified... > The exact way in which new requests are not permitted varies depending on the web...
Through an auto-configuration, Spring Boot makes it easy to create a task executor builder and a task scheduled builders with their respective sets of properties. In most cases, this is...
Recent version of cloud foundry do support in addition to an application health check also readiness check, like kubernetes does: https://docs.cloudfoundry.org/devguide/deploy-apps/manifest-attributes.html#readiness-health-check-type Currently the health probes, `LivenessStateHealthIndicator` and `ReadinessStateHealthIndicator` are only...
see https://github.com/spring-projects/spring-data-commons/commit/5dd7b322b65652f90717c4f8cb930c5e471ad483
Currently, [ElasticsearchContainerConnectionDetailsFactory](https://github.com/spring-projects/spring-boot/blob/main/spring-boot-project/spring-boot-testcontainers/src/main/java/org/springframework/boot/testcontainers/service/connection/elasticsearch/ElasticsearchContainerConnectionDetailsFactory.java) only maps `nodes` and that works with Elasticsearch 7. However, Elasticsearch 8 has security enabled by default and additional configuration is required. [This](https://github.com/eddumelendez/testcontainers-samples/blob/main/spring-boot-elasticsearch/src/test/java/com/example/springbootelasticsearch/BookRepositoryElasticsearch7Tests.java) is an example using Elasticsearch...