本篇內(nèi)容介紹了“springboot文件的上傳和訪問”的有關(guān)知識,在實(shí)際案例的操作過程中,不少人都會(huì)遇到這樣的困境,接下來就讓小編帶領(lǐng)大家學(xué)習(xí)一下如何處理這些情況吧!希望大家仔細(xì)閱讀,能夠?qū)W有所成!
創(chuàng)新互聯(lián)建站長期為千余家客戶提供的網(wǎng)站建設(shè)服務(wù),團(tuán)隊(duì)從業(yè)經(jīng)驗(yàn)10年,關(guān)注不同地域、不同群體,并針對不同對象提供差異化的產(chǎn)品和服務(wù);打造開放共贏平臺,與合作伙伴共同營造健康的互聯(lián)網(wǎng)生態(tài)環(huán)境。為海州企業(yè)提供專業(yè)的成都網(wǎng)站制作、網(wǎng)站設(shè)計(jì)、外貿(mào)網(wǎng)站建設(shè),海州網(wǎng)站改版等技術(shù)服務(wù)。擁有十年豐富建站經(jīng)驗(yàn)和眾多成功案例,為您定制開發(fā)。
public @ResponseBody ApiResult<UploadResult> upload(@RequestParam("file") MultipartFile file, @RequestParam(value="appId") String appId, @RequestParam("group") String group, @RequestParam("fileName") String originFileName){ try { String suffix = file.getOriginalFilename().substring(file.getOriginalFilename().lastIndexOf(".") + 1).toLowerCase(); if(!allowUploadSuffixes.contains(suffix)){ throw new IotBaseException(9999, "不允許上傳該文件類型"); } String fileKey = UUID.randomUUID().toString() + "."+suffix; FileSystemClient client = FileSystemClient.getClient(group); String url = client.upload(fileKey, file.getBytes(), appId); UploadFileEntity entity = new UploadFileEntity(); entity.setAppId(appId); entity.setGroupName(group); entity.setFileName(originFileName); entity.setFileUrl(url); entity.setMimeType(file.getContentType()); entity.setProvider(client.getProvider().name()); entity.setCreatedAt(new Date()); uploadFileEntityMapper.insert(entity); return new ApiResult<>(new UploadResult(url, originFileName)); } catch (Exception e) { e.printStackTrace(); throw new IotBaseException(ExceptionCode.SYSTEM_ERROR.code, "上傳失敗"); } }
在application.yml文件中加入
spring: resources: static-location: classpath:/static/upload/
上面這一步好像不填也沒關(guān)系
創(chuàng)建配置
@Configuration public class WebConfig implements WebMvcConfigurer { @Override public void addResourceHandlers(ResourceHandlerRegistry registry) { registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/"); } }
“springboot文件的上傳和訪問”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識可以關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編將為大家輸出更多高質(zhì)量的實(shí)用文章!
文章名稱:springboot文件的上傳和訪問
網(wǎng)站網(wǎng)址:http://www.rwnh.cn/article18/jscdgp.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供標(biāo)簽優(yōu)化、網(wǎng)站制作、用戶體驗(yàn)、網(wǎng)站營銷、網(wǎng)站設(shè)計(jì)、服務(wù)器托管
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)