spring-framework icon indicating copy to clipboard operation
spring-framework copied to clipboard

Spring Framework

Results 875 spring-framework issues
Sort by recently updated
recently updated
newest added

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...

in: messaging
type: bug

## 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...

status: waiting-for-triage
in: data
theme: aot

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...

status: waiting-for-triage
in: web
status: feedback-provided

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()...

in: messaging
type: enhancement
theme: kotlin

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...

status: waiting-for-triage
in: core
status: feedback-provided

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...

status: waiting-for-triage
in: core

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;...

in: web
type: enhancement

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...

type: documentation
status: blocked

See https://github.com/spring-projects/spring-framework/issues/34666#issuecomment-2773151317

status: waiting-for-triage
in: data

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...

status: waiting-for-triage
in: core