Package javax.servlet.annotation
Annotation Interface MultipartConfig
Annotation that may be specified on a
Servlet
class, indicating that instances of the Servlet expect requests
that conform to the multipart/form-data MIME type.
Servlets annotated with MultipartConfig may retrieve the
Part
components of a given
multipart/form-data request by calling
getPart
or
getParts
.
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionint
The size threshold after which the file will be written to diskThe directory location where files will be storedlong
The maximum size allowed for uploaded files.long
The maximum size allowed for multipart/form-data requests
-
Element Details
-
location
String locationThe directory location where files will be stored- Default:
- ""
-
maxFileSize
long maxFileSizeThe maximum size allowed for uploaded files.The default is -1L, which means unlimited.
- Default:
- -1L
-
maxRequestSize
long maxRequestSizeThe maximum size allowed for multipart/form-data requestsThe default is -1L, which means unlimited.
- Default:
- -1L
-
fileSizeThreshold
int fileSizeThresholdThe size threshold after which the file will be written to disk- Default:
- 0
-