Imply text/event-stream when serializing ServerSentEvent

Issue: SPR-14748
This commit is contained in:
Sebastien Deleuze
2016-09-27 09:27:23 +02:00
parent fb7ae010c8
commit 44ceecc8b3
3 changed files with 21 additions and 2 deletions

View File

@@ -63,7 +63,8 @@ public class ServerSentEventHttpMessageWriter implements HttpMessageWriter<Objec
@Override
public boolean canWrite(ResolvableType elementType, MediaType mediaType) {
return mediaType == null || TEXT_EVENT_STREAM.isCompatibleWith(mediaType);
return mediaType == null || TEXT_EVENT_STREAM.isCompatibleWith(mediaType) ||
ServerSentEvent.class.isAssignableFrom(elementType.getRawClass());
}
@Override