/** * 上传文件 */ @RequestMapping("/upload") @IgnoreAuth public R upload(@RequestParam("file") MultipartFile file,String type) throws Exception { if (file.isEmpty()) { throw new EIException("上传文件不能为空"); } String fileExt = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".")+1); File path = new File(ResourceUtils.getURL("classpath:static").getPath()); if(!path.exists()) { path = new File(""); } File upload = new File(path.getAbsolutePath(),"/upload/"); if(!upload.exists()) { upload.mkdirs(); } String fileName = new Date().getTime()+"."+fileExt; if(StringUtils.isNotBlank(type) && type.contains("_template")) { fileName = type + "."+fileExt; new File(upload.getAbsolutePath()+"/"+fileName).deleteOnExit(); } File dest = new File(upload.getAbsolutePath()+"/"+fileName); file.transferTo(dest); // FileUtils.copyFile(dest, new File("D:\\springbootq33sd\\src\\main\\resources\\static\\upload"+"/"+fileName)); /**修改了路径以后请将该行最前面的//注释去掉**/ if(StringUtils.isNotBlank(type) && type.equals("1")) { ConfigEntity configEntity = configService.selectOne(new EntityWrapper<ConfigEntity>().eq("name", "faceFile")); if(configEntity==null) { configEntity = new ConfigEntity(); configEntity.setName("faceFile"); configEntity.setValue(fileName); } else { configEntity.setValue(fileName); } configService.insertOrUpdate(configEntity); } return R.ok().put("file", fileName); }
时间: 2023-06-16 11:03:45 浏览: 383
Angular.js ng-file-upload结合springMVC的使用教程
这是一个Java Spring Boot框架下的文件上传接口,使用了@RequestParam注解来获取上传的文件参数。如果文件为空,则会抛出一个EIException异常。接着获取文件的后缀名,并创建一个目录来存储上传的文件。如果type参数不为空并且包含"_template"字符串,则将文件名设置为type加上后缀名,然后删除该文件。然后将上传的文件保存到指定的目录中,并返回文件名。如果type参数等于"1",则将文件名存储到数据库中。
阅读全文