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 following [SO question](https://stackoverflow.com/questions/52960921/spring-boot-configurationproperties-change-property-key) illustrates the problem well. Long story short, sometimes I want to have a property in my config file, which name is different from the object field....
Makes the Name annotation applicable on fields and takes this name when looking up the corresponding property. See #37105
This project reproduces the problem: https://github.com/kicktipp/lazyasync The included test does time out as `@Async` is not working correctly with `AdviceMode.ASPECTJ` and `lazy-initialization=true` . ``` @Configuration @EnableAsync(mode = AdviceMode.ASPECTJ) public class...
Add [grpc-starter](https://github.com/DanielLiu1123/grpc-starter) and [httpexchange-spring-boot-starter](https://github.com/DanielLiu1123/grpc-starter) to the community starters document. [grpc-starter](https://github.com/DanielLiu1123/grpc-starter) is a more modern grpc starter, integrating many technologies from the grpc ecosystem. This includes `@Autowired` support for grpc stubs,...
Originally logged issue at https://github.com/spring-projects/spring-data-mongodb/issues/4629 and was referred here. The project in question uses two relevant dependencies: ``` implementation 'org.springframework.boot:spring-boot-starter-data-mongodb' implementation 'org.mongodb:mongodb-driver-reactivestreams' ``` A test entity with the following `@DocumentReference`...
A recent issue in Spring Framework (https://github.com/spring-projects/spring-framework/issues/32081) made us aware that we overlooked websocket broker support for virtual threads. Now that `ChannelRegistration` allows a plain `TaskExecutor` to be specified via...