<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
Java實現檔案上傳到伺服器本地,並通過url存取
有個需求,前端上傳檔案,需要用開關的方式同時支援上傳七牛和伺服器本地,方便不同的使用者需求合理分配資源。本篇主要介紹檔案上傳到本地,然後通過url存取。
首先想到的就是可以通過SpringBoot通常存取靜態資源的方式,當存取:專案根路徑 + / + 靜態檔名時,SpringBoot會依次去類路徑下的四個靜態資源目錄下查詢(預設設定)。
在資原始檔resources目錄下建立如下四個目錄:
重啟Spring boot,存取
http://localhost:8080/1.jpg
http://localhost:8080/2.jpg
http://localhost:8080/3.jpg
http://localhost:8080/4.jpg
結果:
前文所說外部使用者可通過url存取伺服器資原始檔resources目錄下的靜態資源,但若是將上傳的檔案都儲存在resources相關目錄下,將會導致後續打包過大,程式和程式碼不分離,無法檢視等問題。
解決方案:檔案上傳到伺服器某個目錄,然後SpringBoot設定虛擬路徑,對映到此目錄。
通過WebMvcConfigurer 的addResourceHandlers將匹配上虛擬路徑的url對映到檔案上傳到伺服器的目錄,這樣就可以通過url來獲取伺服器上的靜態資源了。
範例程式碼
目標:windows本地測試,將檔案上傳到 D:developworkprojectmyblogmyblog-file-uploadfileStorage 目錄下,然後通過http://localhost:8080/files/檔名 存取。
設定類
@Configuration public class WebMvcConfig implements WebMvcConfigurer { @Autowired FileServiceImpl fileService; @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { //將匹配上/files/**虛擬路徑的url對映到檔案上傳到伺服器的目錄,獲取靜態資源 registry.addResourceHandler("/" + fileService.pathPattern + "/**").addResourceLocations("file:" + fileService.filePath); WebMvcConfigurer.super.addResourceHandlers(registry); } }
Controller
@RestController @RequestMapping("/file") public class FileController { @Autowired private FileServiceImpl fileService; @PostMapping("/upload") public FileUploadResponse upload(@RequestParam("file") MultipartFile file) { return fileService.upload(file); } }
上傳檔案目錄建立好後,主要通過 file.transferTo(new File(absolutePath)) 完成。
Service
@Slf4j @Service public class FileServiceImpl { //攔截的url,虛擬路徑 public String pathPattern = "files"; //自己設定的目錄 private static final String fileDir = "fileStorage"; //上傳檔案存放目錄 = 工作目錄絕對路徑 + 自己設定的目錄,也可以直接自己指定伺服器目錄 //windows本地測試 //絕對路徑: D:developworkprojectmyblogmyblog-file-uploadfileStorage202302021010345680.jpg //System.getProperty("user.dir") D:developworkprojectmyblogmyblog-file-upload //fileDir fileStorage //fileName 202302021010345680.jpg public String filePath = System.getProperty("user.dir") + File.separator + fileDir + File.separator; private static final AtomicInteger SUFFIX = new AtomicInteger(0); @Value(value = "${file.upload.suffix:jpg,jpeg,png,bmp,xls,xlsx,pdf}") private String fileUploadSuffix; public FileUploadResponse upload(MultipartFile file) { FileUploadResponse result = new FileUploadResponse(); if (file.isEmpty()) { log.error("the file to be uploaded is empty"); return result; } List<String> suffixList = Lists.newArrayList(fileUploadSuffix.split(",")); try { //校驗檔案字尾 String originalFilename = file.getOriginalFilename(); String suffix = originalFilename.substring(originalFilename.lastIndexOf(".") + 1); if (!suffixList.contains(suffix)) { log.error("unsupported file format"); return result; } //首次需生成目錄 File folder = new File(filePath); if (!folder.exists()) { folder.mkdirs(); } String fileName = timeFormat(System.currentTimeMillis()) + SUFFIX.getAndIncrement() + "." + suffix; String absolutePath = filePath + fileName; log.info("absolutePath is {}", absolutePath); file.transferTo(new File(absolutePath)); String separator = "/"; String path = separator + pathPattern + separator + fileName; result.setPath(path); result.setFileName(fileName); } catch (Exception e) { log.error("the file upload error occurred. e ", e); } return result; } public static String timeFormat(Long time) { if (Objects.isNull(time)) { return null; } DateFormat sdf = new SimpleDateFormat("yyyyMMddHHmmssSSS"); return sdf.format(time); } }
檢視資料夾,已上傳成功
將上傳介面返回的path拼接上域名或者ip埠、存取 http://localhost:8080/files/202302021010345680.jpg,得到:
其實這和最初的SpringBoot獲取靜態資源的方式又有點不一樣,針對url做攔截,實際上resources目錄下並沒有files這個資料夾,它只是一個虛擬路徑,通過對映轉發到資料夾上傳目錄,在該目錄下通過檔名去定位。
另外,如果有用nginx,也可以在其設定中設定轉發。
到此這篇關於Java實現檔案上傳到伺服器本地並通過url存取的文章就介紹到這了,更多相關Java檔案上傳到伺服器本地並存取內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援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