sebastiandaschner blog
Uploading Files With Quarkus (Update)
monday, april 22, 2024If you’re using Quarkus in a recent version and would like to upload (multiple) files, this video is for you.
In an earlier post, I’ve described how to implement file uploads with Quarkus (both in RESTEasy Classic and Reactive), and in this video I’m describing what has changed since last time:
You can find the updated source code on GitHub.
Takeaways
-
Quarkus RESTEasy Reactive is now called Quarkus REST (dependencies
quarkus-rest*
) -
For RESTEasy Classic, have a look at
@MultipartForm
,MultipartInput
, andMultipartFormDataInput
(all fromquarkus-resteasy-multipart
) -
For Quarkus REST (reactive),
@MultipartForm
is deprecated and not needed anymore, you can useFileUpload
to access information about the uploaded files -
You can check the updated example on GitHub
Found the post useful? Then you might want to have a look at my Quarkus video courses.