Git Product home page Git Product logo

gs-uploading-files's Introduction

tags projects
files
upload
hateoas
mvc
spring-framework
spring-hateoas

This guide walks you through the process of creating a server application that can receive multi-part file uploads.

What you’ll build

You will create a Spring MVC application that accepts file uploads. You will also build a simple client to upload a test file.

Create a configuration class

To upload files with Servlet 3.0 containers, you need to register a MultipartConfigElement class (which would be <multipart-config> in web.xml). Thanks to Spring Boot, that bean is already registered and available! All you need to get started with this application is the following, empty configuration setup.

src/main/java/hello/Application.java

link:initial/src/main/java/hello/Application.java[role=include]

You will soon add a Spring MVC controller, which is why you need @SpringBootApplication. Spring Boot automatically finds @Controller-marked classes and registers them with the application context.

As part of auto-configuring Spring MVC, Spring Boot will create a MultipartConfigElement bean and make itself ready for file uploads.

Note
MultipartConfigElement is a Servlet 3.0 standard element that defines the limits on uploading files. This component is supported by all compliant containers like Tomcat and Jetty. Later on in this guide, we’ll see how to configure its limits.

Create a file upload controller

In Spring MVC, a controller is used to handle file upload requests. The following code provides the web app with the ability to upload files.

src/main/java/hello/FileUploadController.java

link:complete/src/main/java/hello/FileUploadController.java[role=include]

The entire class is marked up with @Controller so Spring MVC can pick it up and look for routes.

Each method is tagged with @RequestMapping to flag the path and the HTTP action. In this case, GET looks up the current list of uploaded files (stored in Application.ROOT folder) and loads it into a Thymeleaf template. It provides a link to not only see, but "surf" to the file (letting the browser decide how to render).

Note
This example uses Java 8’s stream support combined with Java NIO operations to build paths, walk the directory of files, and generate Spring HATEOAS links.

The handleFileUpload method is geared to handle a multi-part message: file. After verifying the file isn’t empty, it uses Java NIO to copy the input stream to a local file.

Note
In a production scenario, you more likely would store the files in a temporary location, a database, or perhaps a NoSQL store like Mongo’s GridFS. It’s is best to NOT load up the file system of your application with content.

Creating a barebones template

To build something of interest, the following Thymeleaf template is a nice example of uploading files as well as showing what’s been uploaded.

src/main/resources/templates/uploadForm.html

link:complete/src/main/resources/templates/uploadForm.html[role=include]

This template has three parts:

  • An optional message at the top where Spring MVC writes a flash-scoped messages.

  • A form allowing the user to upload files

  • A list of files supplied from the backend

Tuning file upload limits

When configuring file uploads, it is often useful to set limits on the size of files. Imagine trying to handle a 5GB file upload! With Spring Boot, we can tune its auto-configured MultipartConfigElement with some property settings.

Create src/main/resources/application.properties and make it look like this:

src/main/resources/application.properties

link:complete/src/main/resources/application.properties[role=include]

The multipart settings are constrained as follows:

  • spring.http.multipart.max-file-size is set to 128KB, meaning total file size cannot exceed 128KB.

  • spring.http.multipart.max-request-size is set to 128KB, meaning total request size for a multipart/form-data cannot exceed 128KB.

Make the application executable

Although it is possible to package this service as a traditional WAR file for deployment to an external application server, the simpler approach demonstrated below creates a standalone application. You package everything in a single, executable JAR file, driven by a good old Java main() method. And along the way, you use Spring’s support for embedding the Tomcat servlet container as the HTTP runtime, instead of deploying to an external instance.

src/main/java/hello/Application.java

link:complete/src/main/java/hello/Application.java[role=include]

You also want a target folder to upload files to, so there is a Java 8 lambda used to create a Boot CommandLineRunner at startup which creates that folder.

That runs the server-side piece that receives file uploads. Logging output is displayed. The service should be up and running within a few seconds.

With the server running, you need to open a browser and visit http://localhost:8080/ to see the upload form. Pick a (small) file and press "Upload" and you should see the success page from the controller. Choose a file that is too large and you will get an ugly error page.

You should then see something like this in your browser window:

You successfully uploaded <name of your file>!

Summary

Congratulations! You have just written a web application that uses Spring to handle file uploads.

gs-uploading-files's People

Contributors

btalbott avatar cbeams avatar celkins avatar davinkevin avatar dsyer avatar gregturn avatar habuma avatar royclarkson avatar xenoterracide avatar

Watchers

 avatar  avatar

Forkers

cuica20

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.