<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
基於jsr303 通過自定義註解實現,實現思路:
存在一些瑕疵,後續補充完善。
部分版本已不預設自動引入該依賴,選擇手動引入
<dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency>
目錄結構:
FileNotEmpty
自定義註解FileNotEmptyValidator
單檔案校驗FilesNotEmptyValidator
多檔案校驗/** * jsr303 檔案格式校驗註解 * * @author maofs * @version 1.0 * @date 2021 -11-29 10:16:03 */ @Documented @Constraint( validatedBy = {FileNotEmptyValidator.class, FilesNotEmptyValidator.class} ) @Target({ElementType.METHOD, ElementType.FIELD, ElementType.ANNOTATION_TYPE, ElementType.CONSTRUCTOR, ElementType.PARAMETER, ElementType.TYPE_USE}) @Retention(RetentionPolicy.RUNTIME) public @interface FileNotEmpty { /** * Message string. * * @return the string */ String message() default "檔案格式不正確"; /** * 校驗組 * * @return the class [ ] */ Class<?>[] groups() default {}; /** * Payload class [ ]. * * @return the class [ ] */ Class<? extends Payload>[] payload() default {}; /** * 需要校驗的格式陣列 * * @return the string [ ] */ String[] format() default {}; /** * 是否必填 為false時檔案為空則不校驗格式,不為空則校驗格式 * 為true時檔案不能為空且需要驗證格式 * * @return the boolean */ boolean required() default true;
/** * 單檔案校驗 * * @author maofs * @version 1.0 * @date 2021 -11-29 10:16:03 */ public class FileNotEmptyValidator implements ConstraintValidator<FileNotEmpty, MultipartFile> { private Set<String> formatSet = new HashSet<>(); private boolean required; @Override public void initialize(FileNotEmpty constraintAnnotation) { String[] format = constraintAnnotation.format(); this.formatSet = new HashSet<>(Arrays.asList(format)); this.required = constraintAnnotation.required(); } @Override public boolean isValid(MultipartFile multipartFile, ConstraintValidatorContext constraintValidatorContext) { if (multipartFile == null || multipartFile.isEmpty()) { return !required; } String originalFilename = multipartFile.getOriginalFilename(); assert originalFilename != null; String type = originalFilename.substring(originalFilename.lastIndexOf('.') + 1).toLowerCase(); if (!formatSet.isEmpty()) { return formatSet.contains(type); } return true; } }
/** * 多檔案校驗 * * @author maofs * @version 1.0 * @date 2021 -11-29 10:16:03 */ public class FilesNotEmptyValidator implements ConstraintValidator<FileNotEmpty, MultipartFile[]> { private Set<String> formatSet = new HashSet<>(); private boolean required; @Override public void initialize(FileNotEmpty constraintAnnotation) { String[] format = constraintAnnotation.format(); this.formatSet = new HashSet<>(Arrays.asList(format)); this.required = constraintAnnotation.required(); } @Override public boolean isValid(MultipartFile[] multipartFiles, ConstraintValidatorContext constraintValidatorContext) { if (multipartFiles == null || multipartFiles.length == 0) { return !required; } for (MultipartFile file : multipartFiles) { String originalFilename = file.getOriginalFilename(); assert originalFilename != null; String type = originalFilename.substring(originalFilename.lastIndexOf('.') + 1).toLowerCase(); if (formatSet.isEmpty() || !formatSet.contains(type)) { return false; } } return true; } }
/** * 統一例外處理 * * @author maofs * @version 1.0 * @date 2021 -11-29 10:16:03 */ @ControllerAdvice public class ExceptionHandle { private final static Logger logger = LoggerFactory.getLogger(ExceptionHandle.class); @ExceptionHandler(value = Exception.class) @ResponseBody public Result<String> handle(Exception e) { logger.error(e.getMessage()); StringBuilder stringBuilder = new StringBuilder(); //jsr303異常 if (e instanceof ConstraintViolationException) { ConstraintViolationException ex = (ConstraintViolationException)e; Set<ConstraintViolation<?>> constraintViolations = ex.getConstraintViolations(); for (ConstraintViolation<?> constraintViolation : constraintViolations) { stringBuilder.append(constraintViolation.getMessageTemplate()); } } else if (e instanceof BindException) { BindException bindException = (BindException)e; stringBuilder.append(bindException.getFieldErrors() .stream() .map(FieldError::getDefaultMessage) .collect(Collectors.joining(","))); } else { stringBuilder.append("未知錯誤:").append("請聯絡後臺運維人員檢查處理!"); } return ResultUtil.fail(stringBuilder.toString()); } }
/** * 檔案上傳範例介面 * * @author maofs * @version 1.0 * @date 2021 -11-19 16:08:26 */ @RestController @Validated @RequestMapping("/annex") public class AnnexController { @Resource private IAnnexService annexService; /** * 檔案上傳範例1 * * @param uploadDTO the upload dto * @return the result */ @PostMapping(value = "/upload1") public Result<String> upload(@Valid AnnexUploadDTO uploadDTO) { return Boolean.TRUE.equals(annexService.upload(uploadDTO)) ? ResultUtil.success() : ResultUtil.fail(); } /** * 檔案上傳範例2 * * @param number 專案編號 * @param pictureFile 圖片檔案 * @param annexFile 附件檔案 * @return result result */ @PostMapping(value = "/upload2") public Result<String> upload(@NotBlank(@FileNotEmpty(format = {"png", "jpg"}, message = "圖片為png/jpg格式", required = false) MultipartFile pictureFile, @FileNotEmpty(format = {"doc", "docx", "xls", "xlsx"}, message = "附件為doc/docx/xls/xlsx格式", required = false) MultipartFile annexFile) { return Boolean.TRUE.equals(annexService.upload( pictureFile, annexFile)) ? ResultUtil.success() : ResultUtil.fail(); } @Data static class AnnexUploadDTO{ @FileNotEmpty(format = {"pdf","doc","zip"}, message = "檔案為pdf/doc/zip格式") private MultipartFile[] file; } }
以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45