spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
See https://github.com/spring-projects/spring-boot/issues/35223#issuecomment-1531061583
On a plain web Spring Boot (3.0.5) application if one do `context.stop()` and then `context.start()` the context on a I get an error: ``` Exception in thread "main" org.springframework.context.ApplicationContextException: Failed...
When I shutdown serivce, has this. Work with Spring boot 3.0.0, Undertow and Log4j2 ``` Exception in thread "SpringApplicationShutdownHook" java.lang.IllegalStateException: UT015023: This Context has been already destroyed at io.undertow.servlet.spec.ServletContextImpl.getDeploymentInfo(ServletContextImpl.java:210) at...
Windows supports ANSI encoding since Windows 10 version 1909. All you need to do is call ENABLE_VIRTUAL_TERMINAL_PROCESSING when calling console API. IntelliJ does this automatically.  All software running via...
When using WebMvc.fn, the order of the registered mapping is: - `RequestMappingHandlerMapping` (order 0, set by Framework) - `WelcomePageHandlerMapping` (order 2, set by Boot) - `RouterFunctionMapping` (order 3, set by...
[reactor-core 3.5.3](https://github.com/reactor/reactor-core/releases/tag/v3.5.3) introduced a way to automatically propagate `ThreadLocal` values registered with the [context-propagation](https://github.com/micrometer-metrics/context-propagation) library. Combined with the use of [micrometer-tracing](https://github.com/micrometer-metrics/tracing) it can allow users to log anywhere in their...
This adds support for auto-configuring `ObservedAspect` when AspectJ is on the classpath, which enables the usage of `@Observed`. --- Is it possible this gets considered for 3.1? I know the...
When a Spring Boot jar has been built with AOT processing enabled, an entry named `Spring-Boot-Aot-Processed` with a value of `true` should be added to the `META-INF/MANIFEST.MF` file. This will...
Adds initial support for Spring for Apache Pulsar. **Work remaining:** - [x] docs
Fixes https://github.com/spring-projects/spring-boot/issues/34854 Use `MergedAnnotations` in order to support `@AliasFor`. I used plain `Predicate` instead of `AnnotationFilter` because it is much simpler and generic.