Spring Boot文件上傳

三種上傳方式

  • 直接上傳到應(yīng)用服務(wù)器
  • 上傳到oss(內(nèi)容存儲(chǔ)在服務(wù)器)如 阿里云 七牛云
  • 前端將圖片轉(zhuǎn)成Base64編碼上傳(適于小容量的上傳)

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

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頁面

image

選擇一個(gè)本地文件酸纲,點(diǎn)擊提交嘁扼,將文件提交到了服務(wù)器指定目錄宙橱,頁面跳轉(zhuǎn)到upload_status.html捻悯,提示上傳成功

image

如果要把上傳的路徑跟著項(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目錄下

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末,一起剝皮案震驚了整個(gè)濱河市消别,隨后出現(xiàn)的幾起案子抛蚤,更是在濱河造成了極大的恐慌,老刑警劉巖寻狂,帶你破解...
    沈念sama閱讀 212,884評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件岁经,死亡現(xiàn)場(chǎng)離奇詭異,居然都是意外死亡蛇券,警方通過查閱死者的電腦和手機(jī)缀壤,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,755評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來纠亚,“玉大人塘慕,你說我怎么就攤上這事〉侔” “怎么了图呢?”我有些...
    開封第一講書人閱讀 158,369評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)啤誊。 經(jīng)常有香客問我岳瞭,道長(zhǎng),這世上最難降的妖魔是什么蚊锹? 我笑而不...
    開封第一講書人閱讀 56,799評(píng)論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮稚瘾,結(jié)果婚禮上牡昆,老公的妹妹穿的比我還像新娘。我一直安慰自己,他們只是感情好丢烘,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,910評(píng)論 6 386
  • 文/花漫 我一把揭開白布柱宦。 她就那樣靜靜地躺著,像睡著了一般播瞳。 火紅的嫁衣襯著肌膚如雪掸刊。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 50,096評(píng)論 1 291
  • 那天赢乓,我揣著相機(jī)與錄音忧侧,去河邊找鬼。 笑死牌芋,一個(gè)胖子當(dāng)著我的面吹牛蚓炬,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播躺屁,決...
    沈念sama閱讀 39,159評(píng)論 3 411
  • 文/蒼蘭香墨 我猛地睜開眼肯夏,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了犀暑?” 一聲冷哼從身側(cè)響起驯击,我...
    開封第一講書人閱讀 37,917評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎耐亏,沒想到半個(gè)月后徊都,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,360評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡苹熏,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,673評(píng)論 2 327
  • 正文 我和宋清朗相戀三年碟贾,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片轨域。...
    茶點(diǎn)故事閱讀 38,814評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡袱耽,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出干发,到底是詐尸還是另有隱情朱巨,我是刑警寧澤,帶...
    沈念sama閱讀 34,509評(píng)論 4 334
  • 正文 年R本政府宣布枉长,位于F島的核電站冀续,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏必峰。R本人自食惡果不足惜洪唐,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,156評(píng)論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望吼蚁。 院中可真熱鬧凭需,春花似錦、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至枯怖,卻和暖如春注整,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背度硝。 一陣腳步聲響...
    開封第一講書人閱讀 32,123評(píng)論 1 267
  • 我被黑心中介騙來泰國打工肿轨, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人塘淑。 一個(gè)月前我還...
    沈念sama閱讀 46,641評(píng)論 2 362
  • 正文 我出身青樓萝招,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國和親存捺。 傳聞我的和親對(duì)象是個(gè)殘疾皇子槐沼,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,728評(píng)論 2 351