Scott Frederick

Results 107 comments of Scott Frederick

@vchrisb What versions of Cloud Foundry support application health and readiness checks? Should the health probes only be enabled automatically if the Cloud Foundry version is at a certain level?

We've had several issues in the past that are similar to this one, in that they express a desire to make it easier to create multiple beans of a given...

Docker Compose support is explicitly disabled when `spring.aot.enabled` is `true`: https://github.com/spring-projects/spring-boot/blob/3c00bf367d7b03d8b8e005e8097c295996290b59/spring-boot-project/spring-boot-docker-compose/src/main/java/org/springframework/boot/docker/compose/lifecycle/DockerComposeLifecycleManager.java#L97-L100 We could potentially change `AotDetector.useGeneratedArtifacts()` there to `NativeDetector.inNativeImage()` to fix this problem, but there's some history behind that in...

Thanks for the report. It's not clear what role Spring Boot might have in this problem, but it's hard to tell from the snippets you've provided. If you would like...

Thanks for trying the new `@RestClientTest` support for `RestClient`. The `MockRestServiceServer` mocking works by setting the request factory to a `MockClientHttpRequestFactory` that keeps track of the request being made so...

> I would like to ask why not make JdkClientHttpRequestFactory the default request factory for autowired RestClient.Builder Thanks @Washingtonwei. I've created #38856 for us to take a look at the...

@yhmingyue Thanks for getting in touch. Can you clarify what you mean when you say "inject the following configuration automatically" and "automatic injection"? Are you asking for configuration properties under...

There are a few dozen parameters in the Apache Commons Pool configuration classes used by Jedis and several other types of connections that Spring Boot auto-configures. Spring Boot typically provides...

The Spring Boot Gradle plugin documentation includes [an example of configuring the plugin for use with podman](https://docs.spring.io/spring-boot/docs/current/gradle-plugin/reference/htmlsingle/#build-image.examples.docker). The podman compatibility mode that creates a symlink for `/var/run/docker.sock` is enough for...

There appears to be a few different things going on here. First, there is the issue of Podman Desktop's Docker compatibility mode. > Podman is configured to have docker compatibility...