spring-framework
spring-framework copied to clipboard
Spring Framework
After this changes related to this [issue](https://github.com/spring-projects/spring-framework/issues/32260), we are experiencing race conditons when jmsListeners are scaling down and some messages are dropped. I've seen that [this](https://github.com/spring-projects/spring-framework/commit/5c589833d7b69f277f8394c5aa3874a0977f546a#diff-62f7dcef8154a80d98dd29ca043bb6fda7e72c4877e77b50cfe4e50d9ec685beR695-R696) idleReceivesPerTaskLimit was changed which...
## Issue Summary In a Spring Boot 3.3.5 application using GraalVM (22.3.0) for native image compilation, the following exception occurs when attempting to initialize lazy-loaded Hibernate entities: ``` org.springframework.security.authentication.InternalAuthenticationServiceException: Unable...
Random CancellationException instead of ResourceAccessException after upgrading to Spring Boot 3.4.0
Hi Spring-Team, After upgrading to Spring Boot 3.4.0, we have encountered an issue with RestTemplate where random CancellationExceptions are thrown instead of the expected ResourceAccessException during timeout scenarios. Observations: This...
Hello, dear team. I use Spring Boot starters of recent 3.4.5 version to investigate Spring RSocket Interfaces. Here is my sample server. ```kotlin @MessageMapping("uuid") suspend fun uuid(): String = UUID.randomUUID().toString()...
While I tried to customize an `AutoConfiguration`, but `@ConditionalOnBean` did not working, then I tried to find the problem through examples, source code, and the Internet, and used different configuration...
I have an issue where the autowiring is failing after an application context restart, calls appear to be being made on the cglib proxy directly, rather than to the target...
I'm developing a Spring boot with Spring MVC web app using rest controllers. I'd like to redirect URLs that have empty parameters to the same URL but without its parameters;...
To me `http_server_requests_active_seconds` seems to be completly undocumented, so it would be nice to document that metric somewhere. I also think that all of these metrics should have a help...
See https://github.com/spring-projects/spring-framework/issues/34666#issuecomment-2773151317
Use case example: ```java @Bean @Role(BeanDefinition.ROLE_INFRASTRUCTURE) public Advisor schedulerFactoryBeanAdvisor() { final AspectJExpressionPointcut pointcut = new AspectJExpressionPointcut(); pointcut.setExpression("execution(* org.springframework.scheduling.quartz.SchedulerFactoryBean.*(..)"); return new DefaultPointcutAdvisor(pointcut, (MethodInterceptor) invocation -> { log.info("Intercepted!"); // do something return...