public interface UploadConfiguration
UploadService
的参数。Modifier and Type | Field and Description |
---|---|
static long |
FILE_SIZE_MAX_DEFAULT
默认值:单个文件允许的最大尺寸,超过此尺寸的请求将被抛弃。
|
static long |
SIZE_MAX_DEFAULT
默认值:HTTP请求的最大尺寸,超过此尺寸的请求将被抛弃。
|
static int |
SIZE_THRESHOLD_DEFAULT
默认值:将文件放在内存中的阈值,小于此值的文件被保存在内存中。
|
Modifier and Type | Method and Description |
---|---|
String[] |
getFileNameKey()
标准的上传文件请求中,包含这样的内容:
Content-Disposition: attachment; filename=xxx.txt
。然而有些不规范的应用,会取fname=xxx.txt 。此变量为兼容这种情况而设。 |
HumanReadableSize |
getFileSizeMax()
取得单个文件允许的最大尺寸,超过此尺寸的文件将被抛弃。单位:字节,值
-1 表示没有限制。 |
String |
getItemStorageBeanName() |
File |
getRepository()
取得暂存文件的目录。
|
HumanReadableSize |
getSizeMax()
取得HTTP请求的最大尺寸,超过此尺寸的请求将被抛弃。单位:字节,值
-1 表示没有限制。 |
HumanReadableSize |
getSizeThreshold()
取得将文件放在内存中的阈值,小于此值的文件被保存在内存中。单位:字节。
|
boolean |
isDiskItemFactory() |
boolean |
isKeepFormFieldInMemory()
是否将普通的form field保持在内存里?当
sizeThreshold 值为0
的时候,该值自动为true 。 |
boolean |
isSaveInFile() |
boolean |
isTemporary()
是否是临时目录,true:认为是临时文件,请求完毕会删除此临时文件。
|
static final long SIZE_MAX_DEFAULT
static final long FILE_SIZE_MAX_DEFAULT
static final int SIZE_THRESHOLD_DEFAULT
File getRepository()
HumanReadableSize getSizeMax()
-1
表示没有限制。HumanReadableSize getFileSizeMax()
-1
表示没有限制。HumanReadableSize getSizeThreshold()
boolean isKeepFormFieldInMemory()
sizeThreshold
值为0
的时候,该值自动为true
。boolean isSaveInFile()
String[] getFileNameKey()
Content-Disposition: attachment; filename=xxx.txt
。然而有些不规范的应用,会取fname=xxx.txt
。此变量为兼容这种情况而设。boolean isTemporary()
boolean isDiskItemFactory()
String getItemStorageBeanName()
Copyright © 2006–2018 TinyGroup. All rights reserved.