All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cc.shacocloud.mirage.web.bind.annotation.FileUpload Maven / Gradle / Ivy

package cc.shacocloud.mirage.web.bind.annotation;

import cc.shacocloud.mirage.web.bind.support.MultipartFileUploadArgumentResolver;
import cc.shacocloud.mirage.web.http.MultipartFileUpload;

import java.lang.annotation.*;

/**
 * 指方法参数的注解应该绑定到web请求的文件。
 * 

* 与 {@link MultipartFileUpload} 组合使用,用于处理文件上传请求 * * @see MultipartFileUploadArgumentResolver * @see MultipartFileUpload */ @Target(ElementType.PARAMETER) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface FileUpload { }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy