Spring MVC file upload with Validation


Spring MVC file upload with Validation

In Spring MVC application, we have already understood about single and multiple files upload in File Upload article.

In this article, we will just extend it by providing validation to the uploading file.

Validation could be to check whether file is empty or file has specified MIME type etc.

Lets develop an application


Project structure

Step 1

Create pom.xml with below dependencies

  1. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  3.   <modelVersion>4.0.0</modelVersion>
  4.   <groupId>Spring</groupId>
  5.   <artifactId>SpringFileUploadValidation</artifactId>
  6.   <packaging>war</packaging>
  7.   <version>0.0.1-SNAPSHOT</version>
  8.   <name>FileUpload Maven Webapp</name>
  9.   <url>http://maven.apache.org</url>
  10.    <properties>
  11.         <org.springframework.version>4.2.0.RELEASE</org.springframework.version>
  12.     </properties>
  13.   <dependencies>
  14.     <dependency>
  15.       <groupId>junit</groupId>
  16.       <artifactId>junit</artifactId>
  17.       <version>3.8.1</version>
  18.       <scope>test</scope>
  19.     </dependency>
  20.     <dependency>
  21.             <groupId>org.springframework</groupId>
  22.             <artifactId>spring-web</artifactId>
  23.             <version>${org.springframework.version}</version>
  24.         </dependency>
  25.  
  26.         <dependency>
  27.             <groupId>org.springframework</groupId>
  28.             <artifactId>spring-webmvc</artifactId>
  29.             <version>${org.springframework.version}</version>
  30.         </dependency>
  31.         <dependency>
  32.             <groupId>javax.servlet</groupId>
  33.             <artifactId>servlet-api</artifactId>
  34.             <version>2.5</version>
  35.             <scope>provided</scope>
  36.         </dependency>
  37.         <dependency>
  38.     <groupId>javax.servlet.jsp.jstl</groupId>
  39.     <artifactId>javax.servlet.jsp.jstl-api</artifactId>
  40.     <version>1.2.1</version>
  41. </dependency>
  42.  
  43. <!-- Apache Commons FileUpload -->
  44. <dependency>
  45.     <groupId>commons-fileupload</groupId>
  46.     <artifactId>commons-fileupload</artifactId>
  47.     <version>1.3.1</version>
  48. </dependency>
  49.  
  50. <!-- Apache Commons IO -->
  51. <dependency>
  52.     <groupId>commons-io</groupId>
  53.     <artifactId>commons-io</artifactId>
  54.     <version>2.4</version>
  55. </dependency>
  56. <dependency>
  57.     <groupId>taglibs</groupId>
  58.     <artifactId>standard</artifactId>
  59.     <version>1.1.2</version>
  60. </dependency>
  61.   </dependencies>
  62.   <build>
  63.     <finalName>SpringFileUploadValidation</finalName>
  64.     <plugins>
  65.             <plugin>
  66.                 <groupId>org.apache.maven.plugins</groupId>
  67.                 <artifactId>maven-compiler-plugin</artifactId>
  68.                 <version>2.5.1</version>
  69.                 <configuration>
  70.                     <source>1.8</source>
  71.                     <target>1.8</target>
  72.                 </configuration>
  73.             </plugin>
  74.         </plugins>
  75.   </build>
  76. </project>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>Spring</groupId>
  <artifactId>SpringFileUploadValidation</artifactId>
  <packaging>war</packaging>
  <version>0.0.1-SNAPSHOT</version>
  <name>FileUpload Maven Webapp</name>
  <url>http://maven.apache.org</url>
   <properties>
		<org.springframework.version>4.2.0.RELEASE</org.springframework.version>
	</properties>
  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>3.8.1</version>
      <scope>test</scope>
    </dependency>
    <dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-web</artifactId>
			<version>${org.springframework.version}</version>
		</dependency>

		<dependency>
			<groupId>org.springframework</groupId>
			<artifactId>spring-webmvc</artifactId>
			<version>${org.springframework.version}</version>
		</dependency>
		<dependency>
			<groupId>javax.servlet</groupId>
			<artifactId>servlet-api</artifactId>
			<version>2.5</version>
			<scope>provided</scope>
		</dependency>
		<dependency>
	<groupId>javax.servlet.jsp.jstl</groupId>
	<artifactId>javax.servlet.jsp.jstl-api</artifactId>
	<version>1.2.1</version>
</dependency>

<!-- Apache Commons FileUpload -->
<dependency>
    <groupId>commons-fileupload</groupId>
    <artifactId>commons-fileupload</artifactId>
    <version>1.3.1</version>
</dependency>
 
<!-- Apache Commons IO -->
<dependency>
    <groupId>commons-io</groupId>
    <artifactId>commons-io</artifactId>
    <version>2.4</version>
</dependency>
<dependency>
	<groupId>taglibs</groupId>
	<artifactId>standard</artifactId>
	<version>1.1.2</version>
</dependency>
  </dependencies>
  <build>
    <finalName>SpringFileUploadValidation</finalName>
    <plugins>
			<plugin>
				<groupId>org.apache.maven.plugins</groupId>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>2.5.1</version>
				<configuration>
					<source>1.8</source>
					<target>1.8</target>
				</configuration>
			</plugin>
		</plugins>
  </build>
</project>


We have added apache file upload and file io dependencies

Step 2

Create web.xml file with Dispatcher servlet

  1. <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  2.     xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
  3.     version="3.1">
  4.  
  5.     <display-name>FileUpload</display-name>
  6.  
  7.     <!-- Spring MVC dispatcher servlet -->
  8.     <servlet>
  9.         <servlet-name>mvc-dispatcher</servlet-name>
  10.         <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  11.         <init-param>
  12.             <param-name>contextConfigLocation</param-name>
  13.             <param-value>
  14.             /WEB-INF/spring-mvc.xml,
  15.         </param-value>
  16.         </init-param>
  17.         <load-on-startup>1</load-on-startup>
  18.     </servlet>
  19.     <servlet-mapping>
  20.         <servlet-name>mvc-dispatcher</servlet-name>
  21.         <url-pattern>/</url-pattern>
  22.     </servlet-mapping>
  23.  
  24.     <listener>
  25.         <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  26.     </listener>
  27. </web-app>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
	xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd"
	version="3.1">

	<display-name>FileUpload</display-name>

	<!-- Spring MVC dispatcher servlet -->
	<servlet>
		<servlet-name>mvc-dispatcher</servlet-name>
		<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
		<init-param>
			<param-name>contextConfigLocation</param-name>
			<param-value>
			/WEB-INF/spring-mvc.xml,
		</param-value>
		</init-param>
		<load-on-startup>1</load-on-startup>
	</servlet>
	<servlet-mapping>
		<servlet-name>mvc-dispatcher</servlet-name>
		<url-pattern>/</url-pattern>
	</servlet-mapping>

	<listener>
		<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
	</listener>
</web-app>


We have also provided the spring configuration file name to create and load the spring beans while starting the server.

Step 3

Create the spring configuration file

Now add the multipartResolver bean in the configuration file so that spring can handle multipart requests like file upload.

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
  4.     xmlns:context="http://www.springframework.org/schema/context"
  5.     xmlns:mvc="http://www.springframework.org/schema/mvc"
  6.     xsi:schemaLocation="http://www.springframework.org/schema/beans
  7.        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
  8.        http://www.springframework.org/schema/context
  9.        http://www.springframework.org/schema/context/spring-context-3.2.xsd
  10.        http://www.springframework.org/schema/mvc
  11.        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">
  12.  
  13.     <context:component-scan base-package="com.kb" />
  14.     <mvc:annotation-driven />
  15.  
  16.     <bean id="viewResolver"
  17.         class="org.springframework.web.servlet.view.InternalResourceViewResolver">
  18.         <property name="prefix" value="/WEB-INF/pages/" />
  19.         <property name="suffix" value=".jsp" />
  20.     </bean>
  21.     <bean id="multipartResolver"
  22.         class="org.springframework.web.multipart.commons.CommonsMultipartResolver">
  23.  
  24.     </bean>
  25.     <bean id="messageSource"
  26.         class="org.springframework.context.support.ReloadableResourceBundleMessageSource">
  27.  
  28.         <property name="basename" value="/WEB-INF/messages" />
  29.     </bean>
  30.  
  31. </beans>
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:p="http://www.springframework.org/schema/p"
	xmlns:context="http://www.springframework.org/schema/context"
	xmlns:mvc="http://www.springframework.org/schema/mvc"
	xsi:schemaLocation="http://www.springframework.org/schema/beans
        http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
        http://www.springframework.org/schema/context
        http://www.springframework.org/schema/context/spring-context-3.2.xsd
        http://www.springframework.org/schema/mvc
        http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd">

	<context:component-scan base-package="com.kb" />
	<mvc:annotation-driven />

	<bean id="viewResolver"
		class="org.springframework.web.servlet.view.InternalResourceViewResolver">
		<property name="prefix" value="/WEB-INF/pages/" />
		<property name="suffix" value=".jsp" />
	</bean>
	<bean id="multipartResolver"
		class="org.springframework.web.multipart.commons.CommonsMultipartResolver">

	</bean>
	<bean id="messageSource"
		class="org.springframework.context.support.ReloadableResourceBundleMessageSource">

		<property name="basename" value="/WEB-INF/messages" />
	</bean>

</beans>


we have added view resolver to resolve the view name and message source bean to load the messages from messages.propertes file.

Step 4

Create the view page

uploadFile.jsp

  1. <%@ page language="java" contentType="text/html; charset=ISO-8859-1"
  2.     pageEncoding="ISO-8859-1"%>
  3. <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
  4. <%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
  5. <%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
  6. <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  7. <html>
  8. <head>
  9. <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
  10. <title>Hello</title>
  11. </head>
  12. <body>
  13.  <form:form method="POST" action="uploadFile" enctype="multipart/form-data" modelAttribute="fileUploadModel">
  14.         File to Upload: <input type="file" name="file"></br> </br>
  15.         Name: <input type="text" name="name"><br /> </br>
  16.         <input type="submit" value="Upload"></br>
  17.         <form:errors path="file" style="color:red;"/>
  18.  </form:form>
  19. </body>
  20. </html>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
    pageEncoding="ISO-8859-1"%>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<%@ taglib prefix="spring" uri="http://www.springframework.org/tags"%>
<%@ taglib prefix="form" uri="http://www.springframework.org/tags/form"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Hello</title>
</head>
<body>
 <form:form method="POST" action="uploadFile" enctype="multipart/form-data" modelAttribute="fileUploadModel">
        File to Upload: <input type="file" name="file"></br> </br> 
        Name: <input type="text" name="name"><br /> </br> 
        <input type="submit" value="Upload"></br>
        <form:errors path="file" style="color:red;"/>
 </form:form>
</body>
</html>


fileUploadSuccess.jsp

  1. <html>
  2. <body>
  3.     <h2>Spring MVC file upload Success</h2>
  4.  
  5.     FileName : <strong> ${fileName} </strong> - Uploaded Successful.
  6. </body>
  7. </html>
<html>
<body>
	<h2>Spring MVC file upload Success</h2>

	FileName : <strong> ${fileName} </strong> - Uploaded Successful.
</body>
</html>


fileUploadFailure.jsp

  1. <html>
  2. <body>
  3.     <h2>Spring MVC file upload failure</h2>
  4.  
  5.     FileName : <strong> ${fileName} </strong> - Upload error due to some technical issues
  6.     Please try again later.
  7. </body>
  8. </html>
<html>
<body>
	<h2>Spring MVC file upload failure</h2>

	FileName : <strong> ${fileName} </strong> - Upload error due to some technical issues
	Please try again later.
</body>
</html>

Step 5

Create the controller

  1. package com.kb.controllers;
  2.  
  3. import java.io.BufferedOutputStream;
  4. import java.io.File;
  5. import java.io.FileOutputStream;
  6.  
  7. import javax.servlet.ServletContext;
  8.  
  9. import org.springframework.beans.factory.annotation.Autowired;
  10. import org.springframework.stereotype.Controller;
  11. import org.springframework.ui.Model;
  12. import org.springframework.validation.BindingResult;
  13. import org.springframework.web.bind.annotation.ModelAttribute;
  14. import org.springframework.web.bind.annotation.RequestMapping;
  15. import org.springframework.web.bind.annotation.RequestMethod;
  16. import org.springframework.web.bind.annotation.RequestParam;
  17. import org.springframework.web.bind.annotation.ResponseBody;
  18. import org.springframework.web.context.ServletContextAware;
  19. import org.springframework.web.multipart.MultipartFile;
  20. import org.springframework.web.servlet.ModelAndView;
  21.  
  22. import com.kb.model.FileUploadModel;
  23. import com.kb.validator.CustomFileValidator;
  24.  
  25. @Controller
  26. public class FileUploadController implements ServletContextAware {
  27.  
  28.     private ServletContext servletContext;
  29.  
  30.     @Autowired
  31.     CustomFileValidator customFileValidator;
  32.  
  33.     @RequestMapping(value = "/uploadFile", method = RequestMethod.GET)
  34.     public String uploadFileFormDisplay(Model model) {
  35.         model.addAttribute("fileUploadModel", new FileUploadModel());
  36.         return "uploadFile";
  37.  
  38.     }
  39.  
  40.     // Handle the single file upload
  41.  
  42.     @RequestMapping(value = "/uploadFile", method = RequestMethod.POST)
  43.     public String uploadFileHandler(Model model,@ModelAttribute FileUploadModel fileUploadModel, BindingResult bindingResult) {
  44.  
  45.         // file handling to upload it in the server path
  46.         MultipartFile file = fileUploadModel.getFile();
  47.         customFileValidator.validate(fileUploadModel, bindingResult);
  48.         if (bindingResult.hasErrors()) {
  49.             return "uploadFile";
  50.         }
  51.         String fileName = file.getOriginalFilename();
  52.         model.addAttribute("fileName", fileName);
  53.         try {
  54.             byte[] bytes = file.getBytes();
  55.             BufferedOutputStream stream = new BufferedOutputStream(
  56.                     new FileOutputStream(new File(servletContext.getRealPath("/") + "/" + fileName)));
  57.             stream.write(bytes);
  58.             stream.close();
  59.             return "fileUploadSuccess";
  60.         } catch (Exception e) {
  61.             return "fileUploadFailure";
  62.         }
  63.  
  64.     }
  65.  
  66.     public void setServletContext(ServletContext servletContext) {
  67.         this.servletContext = servletContext;
  68.  
  69.     }
  70.  
  71. }
package com.kb.controllers;

import java.io.BufferedOutputStream;
import java.io.File;
import java.io.FileOutputStream;

import javax.servlet.ServletContext;

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.validation.BindingResult;
import org.springframework.web.bind.annotation.ModelAttribute;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.context.ServletContextAware;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.ModelAndView;

import com.kb.model.FileUploadModel;
import com.kb.validator.CustomFileValidator;

@Controller
public class FileUploadController implements ServletContextAware {

	private ServletContext servletContext;

	@Autowired
	CustomFileValidator customFileValidator;

	@RequestMapping(value = "/uploadFile", method = RequestMethod.GET)
	public String uploadFileFormDisplay(Model model) {
		model.addAttribute("fileUploadModel", new FileUploadModel());
		return "uploadFile";

	}

	// Handle the single file upload

	@RequestMapping(value = "/uploadFile", method = RequestMethod.POST)
	public String uploadFileHandler(Model model,@ModelAttribute FileUploadModel fileUploadModel, BindingResult bindingResult) {

		// file handling to upload it in the server path
		MultipartFile file = fileUploadModel.getFile();
		customFileValidator.validate(fileUploadModel, bindingResult);
		if (bindingResult.hasErrors()) {
			return "uploadFile";
		}
		String fileName = file.getOriginalFilename();
		model.addAttribute("fileName", fileName);
		try {
			byte[] bytes = file.getBytes();
			BufferedOutputStream stream = new BufferedOutputStream(
					new FileOutputStream(new File(servletContext.getRealPath("/") + "/" + fileName)));
			stream.write(bytes);
			stream.close();
			return "fileUploadSuccess";
		} catch (Exception e) {
			return "fileUploadFailure";
		}

	}

	public void setServletContext(ServletContext servletContext) {
		this.servletContext = servletContext;

	}

}


uploadFileFormDisplay method displays the file upload view page.

uploadFileHandler method handles the file upload submitted request.
This will call the custom validator to validate the file and return the appropriate view page.

Step 6

Create the custom validator class

  1. package com.kb.validator;
  2.  
  3. import org.springframework.stereotype.Component;
  4. import org.springframework.validation.Errors;
  5. import org.springframework.validation.Validator;
  6. import org.springframework.web.multipart.MultipartFile;
  7.  
  8. import com.kb.model.FileUploadModel;
  9.  
  10. @Component
  11. public class CustomFileValidator implements Validator{
  12. public static final String PNG_MIME_TYPE="image/png";
  13. public static final long TEN_MB_IN_BYTES = 10485760;
  14.     @Override
  15.     public boolean supports(Class<?> clazz) {
  16.         return FileUploadModel.class.isAssignableFrom(clazz);
  17.     }
  18.  
  19.     @Override
  20.     public void validate(Object target, Errors errors) {
  21.         FileUploadModel fileUploadModel = (FileUploadModel)target;
  22.         MultipartFile file = fileUploadModel.getFile();
  23.         if(file.isEmpty()){
  24.             errors.rejectValue("file", "upload.file.required");
  25.         }
  26.         else if(!PNG_MIME_TYPE.equalsIgnoreCase(file.getContentType())){
  27.             errors.rejectValue("file", "upload.invalid.file.type");
  28.         }
  29.        
  30.         else if(file.getSize() > TEN_MB_IN_BYTES){
  31.             errors.rejectValue("file", "upload.exceeded.file.size");
  32.         }
  33.        
  34.     }
  35.  
  36. }
package com.kb.validator;

import org.springframework.stereotype.Component;
import org.springframework.validation.Errors;
import org.springframework.validation.Validator;
import org.springframework.web.multipart.MultipartFile;

import com.kb.model.FileUploadModel;

@Component
public class CustomFileValidator implements Validator{
public static final String PNG_MIME_TYPE="image/png";
public static final long TEN_MB_IN_BYTES = 10485760;
	@Override
	public boolean supports(Class<?> clazz) {
		return FileUploadModel.class.isAssignableFrom(clazz);
	}

	@Override
	public void validate(Object target, Errors errors) {
		FileUploadModel fileUploadModel = (FileUploadModel)target;
		MultipartFile file = fileUploadModel.getFile();
		if(file.isEmpty()){
			errors.rejectValue("file", "upload.file.required");
		}
		else if(!PNG_MIME_TYPE.equalsIgnoreCase(file.getContentType())){
			errors.rejectValue("file", "upload.invalid.file.type");
		}
		
		else if(file.getSize() > TEN_MB_IN_BYTES){
			errors.rejectValue("file", "upload.exceeded.file.size");
		}
		
	}

}


We have written the various validation conditions in the validator class.

To understand how custom validator works, please check Spring Custom Validtion article

Step 7

Create the messages.properties file under WEB-INF directory

  1. upload.file.required=File can not be empty
  2. upload.invalid.file.type = Please upload valid .png file only
  3. upload.exceeded.file.size = Please upload a file with size less than 10 MB
upload.file.required=File can not be empty
upload.invalid.file.type = Please upload valid .png file only
upload.exceeded.file.size = Please upload a file with size less than 10 MB


These messages will be displayed in the upload file form if any validation fails.

Step 8

Deploy the application

Step 9

Lets see the output

Access the below url

http://localhost:8080/SpringFileUploadValidation/uploadFile

Now click on Submit without selecting a file

we can see the validation message in the same page.

Now Choose any file which is “not png” type and try to upload it

Give the name as you want in the Name box and Click on Upload

Now try to upload valid png file

Click on upload

About the Author

Founder of javainsimpleway.com
I love Java and open source technologies and very much passionate about software development.
I like to share my knowledge with others especially on technology 🙂
I have given all the examples as simple as possible to understand for the beginners.
All the code posted on my blog is developed,compiled and tested in my development environment.
If you find any mistakes or bugs, Please drop an email to kb.knowledge.sharing@gmail.com

Connect with me on Facebook for more updates

Share this article on