6 Spring Boot文件上傳

文件上傳是項目開發(fā)中的常見操作逗物。一般分為如下幾種解決方案

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

本例以第一種為例让簿,實現(xiàn)將本地圖片上傳到服務(wù)器指定路徑的基礎(chǔ)功能
新建一個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目錄下建兩個html文件,如圖所示的項目結(jié)構(gòu)


image.png

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

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

編寫UploadController蹂安,映射上傳請求

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", "請選擇一個文件");
            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>

運行啟動主類椭迎,http://localhost:8080定向到了upload.html頁面

上傳頁面

選擇一個本地文件,點擊提交田盈,將文件提交到了服務(wù)器指定目錄畜号,頁面跳轉(zhuǎn)到upload_status.html,提示上傳成功


upload_status

image.png

如果要把上傳的路徑跟著項目允瞧,如在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", "請選擇一個文件");
            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";
    }
}

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


image.png
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末述暂,一起剝皮案震驚了整個濱河市痹升,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌畦韭,老刑警劉巖疼蛾,帶你破解...
    沈念sama閱讀 206,311評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異艺配,居然都是意外死亡察郁,警方通過查閱死者的電腦和手機衍慎,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,339評論 2 382
  • 文/潘曉璐 我一進店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來皮钠,“玉大人稳捆,你說我怎么就攤上這事÷蠛洌” “怎么了乔夯?”我有些...
    開封第一講書人閱讀 152,671評論 0 342
  • 文/不壞的土叔 我叫張陵,是天一觀的道長原朝。 經(jīng)常有香客問我驯嘱,道長,這世上最難降的妖魔是什么喳坠? 我笑而不...
    開封第一講書人閱讀 55,252評論 1 279
  • 正文 為了忘掉前任照棋,我火速辦了婚禮,結(jié)果婚禮上交汤,老公的妹妹穿的比我還像新娘琴许。我一直安慰自己,他們只是感情好晾浴,可當(dāng)我...
    茶點故事閱讀 64,253評論 5 371
  • 文/花漫 我一把揭開白布负乡。 她就那樣靜靜地躺著,像睡著了一般脊凰。 火紅的嫁衣襯著肌膚如雪抖棘。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,031評論 1 285
  • 那天狸涌,我揣著相機與錄音切省,去河邊找鬼。 笑死帕胆,一個胖子當(dāng)著我的面吹牛朝捆,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播懒豹,決...
    沈念sama閱讀 38,340評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼芙盘,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了脸秽?” 一聲冷哼從身側(cè)響起儒老,我...
    開封第一講書人閱讀 36,973評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎豹储,沒想到半個月后贷盲,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 43,466評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,937評論 2 323
  • 正文 我和宋清朗相戀三年巩剖,在試婚紗的時候發(fā)現(xiàn)自己被綠了铝穷。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,039評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡佳魔,死狀恐怖曙聂,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情鞠鲜,我是刑警寧澤宁脊,帶...
    沈念sama閱讀 33,701評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站贤姆,受9級特大地震影響榆苞,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜霞捡,卻給世界環(huán)境...
    茶點故事閱讀 39,254評論 3 307
  • 文/蒙蒙 一坐漏、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧碧信,春花似錦赊琳、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,259評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至呈枉,卻和暖如春趁尼,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背猖辫。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工弱卡, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人住册。 一個月前我還...
    沈念sama閱讀 45,497評論 2 354
  • 正文 我出身青樓,卻偏偏與公主長得像瓮具,于是被迫代替她去往敵國和親荧飞。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 42,786評論 2 345

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