Created
August 19, 2015 17:26
-
-
Save azhawkes/f714e46b7e25233b1668 to your computer and use it in GitHub Desktop.
Spring Boot (RestController) - support for application/octet-stream using InputStream
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Adds support for application/octet-stream through a RestController using streams. | |
*/ | |
@Configuration | |
class WebConfig extends WebMvcConfigurationSupport { | |
@Override | |
protected void configureMessageConverters(List<HttpMessageConverter<?>> converters) { | |
converters.add(new AbstractHttpMessageConverter<InputStream>(MediaType.APPLICATION_OCTET_STREAM) { | |
protected boolean supports(Class<?> clazz) { | |
return InputStream.isAssignableFrom(clazz) | |
} | |
protected InputStream readInternal(Class<? extends InputStream> clazz, HttpInputMessage inputMessage) throws IOException, HttpMessageNotReadableException { | |
return inputMessage.body | |
} | |
protected void writeInternal(InputStream inputStream, HttpOutputMessage outputMessage) throws IOException, HttpMessageNotWritableException { | |
IOUtils.copy(inputStream, outputMessage.body) | |
} | |
}) | |
super.configureMessageConverters(converters); | |
} | |
} |
Perfect - I was not aware that spring is not able for such a simple thing... thx a lot!
Lovely trick
Thanks. Very helpful...!!!
Thanks for this, really useful. Note that I made a Java version from the groovy one.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I was using RestController and wanted to have certain endpoints that accept binary file uploads with Content-Type: application/octet-stream, and certain other endpoints that deliver downloads the same way. I did not want to use multipart/form-data.
As far as I could tell, Spring does not support this out of the box, but it's easy enough to add as shown in this gist.
Once the message converter is registered, here's an example of it in use: