MultipartConfig (Java EE 6 ) (original) (raw)



javax.servlet.annotation

Annotation Type MultipartConfig


@Target(value=TYPE) @Retention(value=RUNTIME) public @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 thePart components of a givenmultipart/form-data request by calling getPart orgetParts.


Optional Element Summary
int fileSizeThreshold The size threshold after which the file will be written to disk
java.lang.String location The directory location where files will be stored
long maxFileSize The maximum size allowed for uploaded files.
long maxRequestSize The maximum size allowed for multipart/form-data requests

location

public abstract java.lang.String location

The directory location where files will be stored

Default:

""


maxFileSize

public abstract long maxFileSize

The maximum size allowed for uploaded files.

The default is -1L, which means unlimited.

Default:

-1L


maxRequestSize

public abstract long maxRequestSize

The maximum size allowed for multipart/form-data requests

The default is -1L, which means unlimited.

Default:

-1L


fileSizeThreshold

public abstract int fileSizeThreshold

The size threshold after which the file will be written to disk

Default:

0



Submit a bug or feature

Copyright © 2009-2011, Oracle Corporation and/or its affiliates. All Rights Reserved. Use is subject to license terms.

Generated on 10-February-2011 12:41

Scripting on this page tracks web page traffic, but does not change the content in any way.