Polishing

This commit is contained in:
Juergen Hoeller
2019-11-13 17:23:23 +01:00
parent 32532a88c1
commit 22211a01ce
4 changed files with 13 additions and 6 deletions

View File

@@ -486,7 +486,9 @@ class ConstructorResolver {
}
}
candidates.sort(AutowireUtils.EXECUTABLE_COMPARATOR);
if (candidates.size() > 1) { // explicitly skip immutable singletonList
candidates.sort(AutowireUtils.EXECUTABLE_COMPARATOR);
}
ConstructorArgumentValues resolvedValues = null;
boolean autowiring = (mbd.getResolvedAutowireMode() == AutowireCapableBeanFactory.AUTOWIRE_CONSTRUCTOR);

View File

@@ -850,9 +850,9 @@ public class AnnotationDrivenEventListenerTests {
this.eventCollector.addEvent(this, event);
}
@Override
@EventListener
@Async
@Override
public void handleAsync(AnotherTestEvent event) {
assertThat(Thread.currentThread().getName()).isNotEqualTo(event.content);
this.eventCollector.addEvent(this, event);
@@ -877,9 +877,9 @@ public class AnnotationDrivenEventListenerTests {
this.eventCollector.addEvent(this, event);
}
@Override
@EventListener
@Async
@Override
public void handleAsync(AnotherTestEvent event) {
assertThat(Thread.currentThread().getName()).isNotEqualTo(event.content);
this.eventCollector.addEvent(this, event);
@@ -994,20 +994,20 @@ public class AnnotationDrivenEventListenerTests {
super.handle(event);
}
@Override
@EventListener(condition = "#payload.startsWith('OK')")
@Override
public void handleString(String payload) {
super.handleString(payload);
}
@Override
@ConditionalEvent("#root.event.timestamp > #p0")
@Override
public void handleTimestamp(Long timestamp) {
collectEvent(timestamp);
}
@Override
@ConditionalEvent("@conditionEvaluator.valid(#p0)")
@Override
public void handleRatio(Double ratio) {
collectEvent(ratio);
}
@@ -1085,6 +1085,7 @@ public class AnnotationDrivenEventListenerTests {
}
}
@Configuration
@Import(UseMissingEventListener.class)
public static class MissingEventListener {
@@ -1095,6 +1096,7 @@ public class AnnotationDrivenEventListenerTests {
}
}
@Component
public static class MyEventListener {
@@ -1104,6 +1106,7 @@ public class AnnotationDrivenEventListenerTests {
}
}
public static class UseMissingEventListener {
@Inject

View File

@@ -102,6 +102,7 @@ public abstract class AbstractDataBufferDecoder<T> extends AbstractDecoder<T> {
* {@link #decode(DataBuffer, ResolvableType, MimeType, Map)} instead
*/
@Deprecated
@Nullable
protected T decodeDataBuffer(DataBuffer buffer, ResolvableType elementType,
@Nullable MimeType mimeType, @Nullable Map<String, Object> hints) {

View File

@@ -155,6 +155,7 @@ public class ServerSentEventHttpMessageReader implements HttpMessageReader<Objec
}
}
@Nullable
private Object decodeData(String data, ResolvableType dataType, Map<String, Object> hints) {
if (String.class == dataType.resolve()) {
return data.substring(0, data.length() - 1);