Skip to content

Commit 64f2beb

Browse files
dekelpillirstoyanchev
authored andcommitted
Fixing NPE in AbstractNamedValueMethodArgumentResolver
See gh-23882
1 parent fd96788 commit 64f2beb

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

spring-messaging/src/main/java/org/springframework/messaging/handler/annotation/support/AbstractNamedValueMethodArgumentResolver.java

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
import org.springframework.core.MethodParameter;
2727
import org.springframework.core.convert.ConversionService;
2828
import org.springframework.core.convert.TypeDescriptor;
29+
import org.springframework.core.convert.support.DefaultConversionService;
2930
import org.springframework.lang.Nullable;
3031
import org.springframework.messaging.Message;
3132
import org.springframework.messaging.handler.annotation.ValueConstants;
@@ -72,10 +73,10 @@ public abstract class AbstractNamedValueMethodArgumentResolver implements Handle
7273
* @param beanFactory a bean factory for resolving {@code ${...}}
7374
* placeholders and {@code #{...}} SpEL expressions in default values
7475
*/
75-
protected AbstractNamedValueMethodArgumentResolver(ConversionService conversionService,
76+
protected AbstractNamedValueMethodArgumentResolver(@Nullable ConversionService conversionService,
7677
@Nullable ConfigurableBeanFactory beanFactory) {
7778

78-
this.conversionService = conversionService;
79+
this.conversionService = conversionService != null ? conversionService : DefaultConversionService.getSharedInstance();
7980
this.configurableBeanFactory = beanFactory;
8081
this.expressionContext = (beanFactory != null ? new BeanExpressionContext(beanFactory, null) : null);
8182
}

spring-messaging/src/main/java/org/springframework/messaging/handler/annotation/support/DestinationVariableMethodArgumentResolver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public class DestinationVariableMethodArgumentResolver extends AbstractNamedValu
4141
DestinationVariableMethodArgumentResolver.class.getSimpleName() + ".templateVariables";
4242

4343

44-
public DestinationVariableMethodArgumentResolver(ConversionService conversionService) {
44+
public DestinationVariableMethodArgumentResolver(@Nullable ConversionService conversionService) {
4545
super(conversionService, null);
4646
}
4747

spring-messaging/src/main/java/org/springframework/messaging/handler/annotation/support/HeaderMethodArgumentResolver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ public class HeaderMethodArgumentResolver extends AbstractNamedValueMethodArgume
4949

5050

5151
public HeaderMethodArgumentResolver(
52-
ConversionService conversionService, @Nullable ConfigurableBeanFactory beanFactory) {
52+
@Nullable ConversionService conversionService, @Nullable ConfigurableBeanFactory beanFactory) {
5353

5454
super(conversionService, beanFactory);
5555
}

spring-messaging/src/test/java/org/springframework/messaging/handler/annotation/support/HeaderMethodArgumentResolverTests.java

+8
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,14 @@ public void resolveOptionalHeaderWithValue() throws Exception {
145145
assertThat(result).isEqualTo(Optional.of("bar"));
146146
}
147147

148+
@Test
149+
public void resolveOptionalHeaderWithValueFromNullConversionServiceInput() throws Exception {
150+
GenericApplicationContext context = new GenericApplicationContext();
151+
context.refresh();
152+
resolver = new HeaderMethodArgumentResolver(null, context.getBeanFactory());
153+
resolveOptionalHeaderWithValue();
154+
}
155+
148156
@Test
149157
public void resolveOptionalHeaderAsEmpty() throws Exception {
150158
Message<String> message = MessageBuilder.withPayload("foo").build();

0 commit comments

Comments
 (0)