We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please add possibility to download and upload file by using RAML endpoints definition.
The text was updated successfully, but these errors were encountered:
When it comes to download, there is a way to do it. Define a raml part like this:
get: responses: 200: body: application/octet-stream: type: file
and you will get decorator generated like this:
@RequestMapping(value = "", method = RequestMethod.GET) public ResponseEntity<?> getObject() { return this.returnControllerDelegate.getObject(); }
So you got return type: ResponseEntity<?> and you can return a byte[] from your implementation.
ResponseEntity<?>
byte[]
This is more like a workaround and it's not ideal since generated code should enforce you to return a file (or byte[]).
Sorry, something went wrong.
No branches or pull requests
Please add possibility to download and upload file by using RAML endpoints definition.
The text was updated successfully, but these errors were encountered: