spring-boot
spring-boot copied to clipboard
Spring Boot helps you to create Spring-powered, production-grade applications and services with absolute minimum fuss.
We are using Log4j as our logging framework. One of our loggers has custom Log level. When calling actuator /loggers endpoint to get list of all loggers exception raises: `EffectiveLevel...
I stumbled upon #413 when trying to resolve exactly the same problem. We're using some `provided` artifacts and don't want them to end up in the final deliverable. This is...
Getting this issue with spring boot properties: ``` server.ssl.certificate-private-key=/privkey.pem server.ssl.certificate=/fullchain.pem ``` ``` org.springframework.context.ApplicationContextException: Unable to start web server at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.onRefresh(ServletWebServerApplicationContext.java:164) ~[spring-boot-3.1.0-SNAPSHOT.jar!/:3.1.0-SNAPSHOT] at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:578) ~[spring-context-6.0.8.jar!/:6.0.8] at org.springframework.boot.web.servlet.context.ServletWebServerApplicationContext.refresh(ServletWebServerApplicationContext.java:146) ~[spring-boot-3.1.0-SNAPSHOT.jar!/:3.1.0-SNAPSHOT] at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:733) ~[spring-boot-3.1.0-SNAPSHOT.jar!/:3.1.0-SNAPSHOT]...
Our testcontainers support should work with `@RestartScope`. It would be good to document this and have tests.
When `moveToSnapshots` is used, it logs the same thing than an actual upgrade, e.g. ``` Upgrade to Spring Framework 5.3.28 ``` However, that's not really what it has done. While...
Spring Data now has [argument resolvers for Pageable and Sort for Webflux](https://github.com/spring-projects/spring-data-commons/pull/264). It would be great to have these autoconfigured if spring-data-commons is detected on the classpath like what is...
The following are the configuration details of my project's websocket: ```javaj @Configuration @EnableWebSocket public class WebSocketConfig implements WebSocketConfigurer { @Autowired private TextMessageHandler handler; @Override public void registerWebSocketHandlers(WebSocketHandlerRegistry registry) { registry...