Replies: 2 comments 8 replies
-
I think a small Maven reproducer would be helpful. |
Beta Was this translation helpful? Give feedback.
6 replies
-
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
quarkus:3.15.1
jdk:21
Using the ASCII file name, the file content is normal, and the non-ASCII file name, the file content is null, I don't understand why
`
@post
@consumes(MediaType.MULTIPART_FORM_DATA)
@produces(MediaType.APPLICATION_JSON)
public Response test(@MultipartForm UploadFile uploadFile) {
.....
}
@DaTa
public class UploadFile {
@FormParam("file")
@PartType(MediaType.APPLICATION_OCTET_STREAM)
public InputStream file;
}
`
Beta Was this translation helpful? Give feedback.
All reactions