spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
https://github.com/spring-projects/spring-boot/issues/32865 changed the `EmbeddedDatabaseConnection` so that GraalVM would not fail to initialize it. When https://github.com/oracle/graal/issues/5300 and https://github.com/oracle/graal/issues/5301 is resolved, we can revert these changes.
The four auto config classes in [autoconfigure/graphql/data](https://github.com/spring-projects/spring-boot/tree/main/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/graphql/data) -- Querydsl, Query by Example, reactive and non-reactive, all detect repositories auto-register them for GraphQL queries. It's possible for more than of these...
It seems there is a good amount of users who are registering an `ObservationPredicate` in order to disable Observations for `/actuator/**` endpoints, something like this: ```java @Bean ObservationPredicate actuatorServerContextPredicate() {...
After reading the documentation and javadocs for 3.0.x, it's still unclear what the difference between the new `@AutoConfiguration` annotation and old `@Configuration` annotation. It's clear that `@AutoConfiguration` is meta-annotated with...
Running `native-image` on a jar is a bit painful: ``` $ rm -rf target/native $ mkdir -p target/native $ cd target/native $ jar -xvf ../myproject-0.0.1-SNAPSHOT.jar $ native-image -H:Name=myproject @META-INF/native-image/argfile -cp...
For WebSocket support the preconfigured ThreadExecutor is set for ChannelRegistrations similar to the JpaRepositoriesAutoConfiguration. See gh-39314
Hi! When an environment does NOT support container reuse (i.e. .testcontainers.properties does not have testcontainers.reuse.enabled=true), but a container is set up using container.withReuse(true), [Testcontainers Java](https://github.com/testcontainers/testcontainers-java) decides that the container is...
A issue has been raised and fixed in `apache/logging-log4j2`: https://github.com/apache/logging-log4j2/issues/1783 A detailed explanation of the proposed change may be found in this issue. Basically, the null check for the environment...
Related to https://github.com/git-commit-id/git-commit-id-maven-plugin/issues/674. This change is required to make the times produced by the git-commit-id-maven-plugin usable for Maven's [reproducible builds]( https://maven.apache.org/guides/mini/guide-reproducible-builds.html). Timestamp for reproducible output archive entries must either formatted...
This commit fixes the json path assertion of a test. The second argument of `jsonpath` is an `Object[]` in case the expression is using placeholders. We've had several tests not...