spring-boot icon indicating copy to clipboard operation
spring-boot copied to clipboard

Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.

Results 945 spring-boot issues
Sort by recently updated
recently updated
newest added

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...

type: regression

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...

type: bug

```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...

type: enhancement
status: on-hold

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:...

status: waiting-for-feedback
status: waiting-for-triage
status: feedback-reminder

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...

status: waiting-for-triage
for: team-meeting
status: waiting-for-internal-feedback

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...

type: documentation

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...

type: enhancement
status: pending-design-work

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...

type: enhancement
theme: actuator

see https://github.com/spring-projects/spring-data-commons/commit/5dd7b322b65652f90717c4f8cb930c5e471ad483

type: enhancement

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...

type: enhancement
status: pending-design-work
theme: containers