Spring Boot(十七):使用 Spring Boot 上傳檔案

純潔的微笑發表於2018-01-16

上傳檔案是網際網路中常常應用的場景之一,最典型的情況就是上傳頭像等,今天就帶著帶著大家做一個 Spring Boot 上傳檔案的小案例。

1、pom 包配置

我們使用 Spring Boot 版本 2.1.0、jdk 1.8、tomcat 8.0。

<parent>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-parent</artifactId>
    <version>2.1.0.RELEASE</version>
</parent>

<properties>
    <java.version>1.8</java.version>
</properties>

<dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-thymeleaf</artifactId>
    </dependency>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-devtools</artifactId>
        <optional>true</optional>
    </dependency>
</dependencies>

引入了spring-boot-starter-thymeleaf做頁面模板引擎,寫一些簡單的上傳示例。

2、啟動類設定

@SpringBootApplication
public class FileUploadWebApplication {

    public static void main(String[] args) throws Exception {
        SpringApplication.run(FileUploadWebApplication.class, args);
    }

    @Bean
    public TomcatServletWebServerFactory tomcatEmbedded() {
        TomcatServletWebServerFactory tomcat = new TomcatServletWebServerFactory();
        tomcat.addConnectorCustomizers((TomcatConnectorCustomizer) connector -> {
            if ((connector.getProtocolHandler() instanceof AbstractHttp11Protocol<?>)) {
                //-1 means unlimited
                ((AbstractHttp11Protocol<?>) connector.getProtocolHandler()).setMaxSwallowSize(-1);
            }
        });
        return tomcat;
    }

}

tomcatEmbedded 這段程式碼是為了解決,上傳檔案大於10M出現連線重置的問題。此異常內容 GlobalException 也捕獲不到。

Spring Boot(十七):使用 Spring Boot 上傳檔案

詳細內容參考:Tomcat large file upload connection reset

3、編寫前端頁面

上傳頁面

<!DOCTYPE html>
<html xmlns:th="http://www.thymeleaf.org">
<body>
<h1>Spring Boot file upload example</h1>
<form method="POST" action="/upload" enctype="multipart/form-data">
    <input type="file" name="file" /><br/><br/>
    <input type="submit" value="Submit" />
</form>
</body>
</html>

非常簡單的一個 Post 請求,一個選擇框選擇檔案,一個提交按鈕,效果如下:

Spring Boot(十七):使用 Spring Boot 上傳檔案

上傳結果展示頁面:

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
<body>
<h1>Spring Boot - Upload Status</h1>
<div th:if="${message}">
    <h2 th:text="${message}"/>
</div>
</body>
</html>

效果圖如下:

Spring Boot(十七):使用 Spring Boot 上傳檔案

4、編寫上傳控制類

訪問 localhost 自動跳轉到上傳頁面:

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

上傳業務處理

@PostMapping("/upload") 
public String singleFileUpload(@RequestParam("file") MultipartFile file,
                               RedirectAttributes redirectAttributes) {
    if (file.isEmpty()) {
        redirectAttributes.addFlashAttribute("message", "Please select a file to upload");
        return "redirect:uploadStatus";
    }

    try {
        // Get the file and save it somewhere
        byte[] bytes = file.getBytes();
        Path path = Paths.get(UPLOADED_FOLDER + file.getOriginalFilename());
        Files.write(path, bytes);

        redirectAttributes.addFlashAttribute("message",
                "You successfully uploaded '" + file.getOriginalFilename() + "'");

    } catch (IOException e) {
        e.printStackTrace();
    }

    return "redirect:/uploadStatus";
}

上面程式碼的意思就是,通過MultipartFile讀取檔案資訊,如果檔案為空跳轉到結果頁並給出提示;如果不為空讀取檔案流並寫入到指定目錄,最後將結果展示到頁面。

MultipartFile是Spring上傳檔案的封裝類,包含了檔案的二進位制流和檔案屬性等資訊,在配置檔案中也可對相關屬性進行配置,基本的配置資訊如下:

  • spring.http.multipart.enabled=true #預設支援檔案上傳.
  • spring.http.multipart.file-size-threshold=0 #支援檔案寫入磁碟.
  • spring.http.multipart.location=# 上傳檔案的臨時目錄
  • spring.http.multipart.max-file-size=1Mb # 最大支援檔案大小
  • spring.http.multipart.max-request-size=10Mb # 最大支援請求大小

最常用的是最後兩個配置內容,限制檔案上傳大小,上傳時超過大小會丟擲異常:

Spring Boot(十七):使用 Spring Boot 上傳檔案

更多配置資訊參考這裡:Common application properties

5、異常處理

@ControllerAdvice
public class GlobalExceptionHandler {

    @ExceptionHandler(MultipartException.class)
    public String handleError1(MultipartException e, RedirectAttributes redirectAttributes) {
        redirectAttributes.addFlashAttribute("message", e.getCause().getMessage());
        return "redirect:/uploadStatus";
    }
}

設定一個@ControllerAdvice用來監控Multipart上傳的檔案大小是否受限,當出現此異常時在前端頁面給出提示。利用@ControllerAdvice可以做很多東西,比如全域性的統一異常處理等,感興趣的同學可以下來了解。

6、總結

這樣一個使用 Spring Boot 上傳檔案的簡單 Demo 就完成了,感興趣的同學可以將示例程式碼下載下來試試吧。

文章內容已經升級到 Spring Boot 2.x

示例程式碼-github

示例程式碼-碼雲

參考

Spring Boot file upload example

相關文章