Skip to content

Commit 005d201

Browse files
committedOct 31, 2019
Refine changes for PR
Closes gh-23882
1 parent 64f2beb commit 005d201

File tree

4 files changed

+10
-12
lines changed

4 files changed

+10
-12
lines changed
 

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

+8-2
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,16 @@ public abstract class AbstractNamedValueMethodArgumentResolver implements Handle
7373
* @param beanFactory a bean factory for resolving {@code ${...}}
7474
* placeholders and {@code #{...}} SpEL expressions in default values
7575
*/
76-
protected AbstractNamedValueMethodArgumentResolver(@Nullable ConversionService conversionService,
76+
protected AbstractNamedValueMethodArgumentResolver(ConversionService conversionService,
7777
@Nullable ConfigurableBeanFactory beanFactory) {
7878

79-
this.conversionService = conversionService != null ? conversionService : DefaultConversionService.getSharedInstance();
79+
// Fallback on shared ConversionService for now for historic reasons.
80+
// Possibly remove after discussion in gh-23882.
81+
82+
//noinspection ConstantConditions
83+
this.conversionService = conversionService != null ?
84+
conversionService : DefaultConversionService.getSharedInstance();
85+
8086
this.configurableBeanFactory = beanFactory;
8187
this.expressionContext = (beanFactory != null ? new BeanExpressionContext(beanFactory, null) : null);
8288
}

‎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(@Nullable ConversionService conversionService) {
44+
public DestinationVariableMethodArgumentResolver(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-
@Nullable ConversionService conversionService, @Nullable ConfigurableBeanFactory beanFactory) {
52+
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,14 +145,6 @@ 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-
156148
@Test
157149
public void resolveOptionalHeaderAsEmpty() throws Exception {
158150
Message<String> message = MessageBuilder.withPayload("foo").build();

0 commit comments

Comments
 (0)