2019-04-01

Spring Boot文件上傳

文件上傳是項(xiàng)目開(kāi)發(fā)中的常見(jiàn)操作。一般分為如下幾種解決方案

  • 直接上傳到應(yīng)用服務(wù)器
  • 上傳到阿里云必尼、七牛云等OSS服務(wù)器
  • 圖片轉(zhuǎn)成Base64后傳到服務(wù)器

本例以第一種為例,實(shí)現(xiàn)將本地圖片上傳到服務(wù)器指定路徑的基礎(chǔ)功能
新建一個(gè)module,命名為file-upload斟冕,勾選web、Thymeleaf依賴

pom.xml

  <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-thymeleaf</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

在resources的templates目錄下建兩個(gè)html文件缅阳,如圖所示的項(xiàng)目結(jié)構(gòu)


image.png

application.properties配置一下上傳參數(shù)

spring.servlet.multipart.max-file-size=100MB
spring.servlet.multipart.max-request-size=100MB

編寫UploadController磕蛇,映射上傳請(qǐng)求

package com.springboot.fileupload.controller;

import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

@Controller
public class UploadController {
    private static String UPLOADED_FOLDER = "E:/temp/";

    @GetMapping("/")
    public String index() {
        return "upload";
    }

    @PostMapping("/upload")
    public String singleFileUpload(@RequestParam("file") MultipartFile file,
                                   RedirectAttributes redirectAttributes) {
        if (file.isEmpty()) {
            redirectAttributes.addFlashAttribute("message", "請(qǐng)選擇一個(gè)文件");
            return "redirect:upload_status";
        }

        try {
            byte[] bytes = file.getBytes();
            Path path = Paths.get(UPLOADED_FOLDER + file.getOriginalFilename());
            Files.write(path, bytes);
            redirectAttributes.addFlashAttribute("message",
                    "文件成功上傳!" + file.getOriginalFilename());
        } catch (IOException e) {
            e.printStackTrace();
        }

        return "redirect:/upload_status";
    }

    @GetMapping("/upload_status")
    public String uploadStatus() {
        return "upload_status";
    }
}

upload.html文件

<!DOCTYPE html>
<html lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1,user-scalable=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<body>
<h1>Spring Boot 文件上傳示例</h1>
<form method="POST" action="/upload" enctype="multipart/form-data">
    <input type="file" name="file"/>
    <br>
    <br>
    <input type="submit" value="提交"/>
</form>
</body>
</html>

upload_status.html文件

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<body>
<h1>Spring Boot - 文件上傳狀態(tài)</h1>
<div th:if="${message}">
    <h2 th:text="${message}"/>
</div>
</body>
</html>

運(yùn)行啟動(dòng)主類,http://localhost:8080定向到了upload.html頁(yè)面

image.png

選擇一個(gè)本地文件,點(diǎn)擊提交秀撇,將文件提交到了服務(wù)器指定目錄超棺,頁(yè)面跳轉(zhuǎn)到upload_status.html,提示上傳成功


image.png

image.png

image.png

如果要把上傳的路徑跟著項(xiàng)目捌袜,如在static目錄下的upload文件夾说搅,則需要更改UploadController代碼
import org.springframework.stereotype.Controller;
import org.springframework.util.ResourceUtils;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.mvc.support.RedirectAttributes;

import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;

@Controller
public class UploadController {

@GetMapping("/")
public String index() {
    return "upload";
}

@PostMapping("/upload")
public String singleFileUpload(@RequestParam("file") MultipartFile srcFile,
                               RedirectAttributes redirectAttributes) {
    if (srcFile.isEmpty()) {
        redirectAttributes.addFlashAttribute("message", "請(qǐng)選擇一個(gè)文件");
        return "redirect:upload_status";
    }
    try {
        File destFile = new File(ResourceUtils.getURL("classpath:").getPath());
        if (!destFile.exists()) {
            destFile = new File("");
        }
        System.out.println("file path:" + destFile.getAbsolutePath());
        File upload = new File(destFile.getAbsolutePath(), "static/");
        if (!upload.exists()) {
            upload.mkdirs();
        }
        System.out.println("upload url:" + upload.getAbsolutePath());
        Path path = Paths.get(upload.getAbsolutePath() + "/" + srcFile.getOriginalFilename());
        byte[] bytes = srcFile.getBytes();
        Files.write(path, bytes);
        redirectAttributes.addFlashAttribute("message",
                "文件成功上傳!" + srcFile.getOriginalFilename());
    } catch (IOException e) {
        e.printStackTrace();
    }
    return "redirect:/upload_status";
}

@GetMapping("/upload_status")
public String uploadStatus() {
    return "upload_status";
}

}

會(huì)將文件上傳到target/classes/static目錄下,如圖

image.png
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末虏等,一起剝皮案震驚了整個(gè)濱河市弄唧,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌霍衫,老刑警劉巖候引,帶你破解...
    沈念sama閱讀 206,723評(píng)論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異敦跌,居然都是意外死亡澄干,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,485評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門柠傍,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)麸俘,“玉大人,你說(shuō)我怎么就攤上這事惧笛〈用模” “怎么了?”我有些...
    開(kāi)封第一講書人閱讀 152,998評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵患整,是天一觀的道長(zhǎng)拜效。 經(jīng)常有香客問(wèn)我,道長(zhǎng)各谚,這世上最難降的妖魔是什么紧憾? 我笑而不...
    開(kāi)封第一講書人閱讀 55,323評(píng)論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮昌渤,結(jié)果婚禮上赴穗,老公的妹妹穿的比我還像新娘。我一直安慰自己愈涩,他們只是感情好望抽,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,355評(píng)論 5 374
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著履婉,像睡著了一般。 火紅的嫁衣襯著肌膚如雪斟览。 梳的紋絲不亂的頭發(fā)上毁腿,一...
    開(kāi)封第一講書人閱讀 49,079評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音,去河邊找鬼已烤。 笑死鸠窗,一個(gè)胖子當(dāng)著我的面吹牛,可吹牛的內(nèi)容都是我干的胯究。 我是一名探鬼主播稍计,決...
    沈念sama閱讀 38,389評(píng)論 3 400
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼裕循!你這毒婦竟也來(lái)了臣嚣?” 一聲冷哼從身側(cè)響起,我...
    開(kāi)封第一講書人閱讀 37,019評(píng)論 0 259
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤剥哑,失蹤者是張志新(化名)和其女友劉穎硅则,沒(méi)想到半個(gè)月后,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體株婴,經(jīng)...
    沈念sama閱讀 43,519評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡怎虫,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 35,971評(píng)論 2 325
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了困介。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片大审。...
    茶點(diǎn)故事閱讀 38,100評(píng)論 1 333
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖座哩,靈堂內(nèi)的尸體忽然破棺而出徒扶,到底是詐尸還是另有隱情,我是刑警寧澤八回,帶...
    沈念sama閱讀 33,738評(píng)論 4 324
  • 正文 年R本政府宣布酷愧,位于F島的核電站,受9級(jí)特大地震影響缠诅,放射性物質(zhì)發(fā)生泄漏溶浴。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,293評(píng)論 3 307
  • 文/蒙蒙 一管引、第九天 我趴在偏房一處隱蔽的房頂上張望士败。 院中可真熱鬧,春花似錦褥伴、人聲如沸谅将。這莊子的主人今日做“春日...
    開(kāi)封第一講書人閱讀 30,289評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)饥臂。三九已至,卻和暖如春似踱,著一層夾襖步出監(jiān)牢的瞬間隅熙,已是汗流浹背稽煤。 一陣腳步聲響...
    開(kāi)封第一講書人閱讀 31,517評(píng)論 1 262
  • 我被黑心中介騙來(lái)泰國(guó)打工, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留囚戚,地道東北人酵熙。 一個(gè)月前我還...
    沈念sama閱讀 45,547評(píng)論 2 354
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像驰坊,于是被迫代替她去往敵國(guó)和親匾二。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,834評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容

  • Spring Boot輕松跨域:Spring Boot中采用注解輕松實(shí)現(xiàn)跨域的一個(gè)基礎(chǔ)例子 1.項(xiàng)目結(jié)構(gòu)拳芙,conf...
    詛咒獵豹閱讀 269評(píng)論 0 0
  • 對(duì)于java中的思考的方向察藐,1必須要看前端的頁(yè)面,對(duì)于前端的頁(yè)面基本的邏輯态鳖,如果能理解最好转培,不理解也要知道幾點(diǎn)。 ...
    神尤魯?shù)婪?/span>閱讀 802評(píng)論 0 0
  • 通過(guò)之前的兩篇我們能在本地搭建單一和集群兩種方式的dubbo服務(wù)浆竭,這篇我們來(lái)看 springmvc+spring+...
    安琪拉_4b7e閱讀 2,144評(píng)論 0 6
  • 文件上傳方式:1.直接上傳到應(yīng)用服務(wù)器(速度浸须,容量) 2.上傳到oss(內(nèi)容存儲(chǔ)服務(wù)器)(阿里云涤躲,七牛云)3.前端...
    六年的承諾閱讀 1,768評(píng)論 0 4
  • 我是一盞安放在單人房里的吊燈鄙早,我的主人,是一個(gè)剛滿二十的年輕女子颠毙。 我來(lái)到這里還沒(méi)多久顺囊,白天肌索,我便迷迷糊糊地睡覺(jué),...
    Back_to_ocean閱讀 392評(píng)論 2 2