- Spring MVC 基础知识
- Spring MVC - 主页
- Spring MVC - 概述
- Spring MVC - 环境设置
- Spring MVC - Hello World 示例
- Spring MVC - 表单处理
- Spring MVC - 表单处理
- Spring MVC - 页面重定向
- Spring MVC - 静态页面
- Spring MVC - 表单标签库
- Spring MVC - 文本框
- Spring MVC - 密码
- Spring MVC - 文本区域
- Spring MVC - 复选框
- Spring MVC - 复选框
- Spring MVC - 单选按钮
- Spring MVC - 单选按钮
- Spring MVC - 下拉菜单
- Spring MVC - 列表框
- Spring MVC - 隐藏
- Spring MVC - 错误
- Spring MVC - 上传
- Spring MVC - 处理程序映射
- Bean 名称 Url 处理程序映射
- 控制器类名处理程序映射
- 简单的 URL 处理程序映射
- Spring MVC - 控制器
- Spring MVC - 多动作控制器
- 属性方法名称解析器
- 参数 方法名称 解析器
- 可参数化视图控制器
- Spring MVC - 视图解析器
- 内部资源视图解析器
- Spring MVC - Xml 视图解析器
- 资源包视图解析器
- 多解析器映射
- Spring MVC - 集成
- Spring MVC - Hibernate 验证器
- Spring MVC - 生成 RSS 提要
- Spring MVC - 生成 XML
- Spring MVC - 生成 JSON
- Spring MVC - 生成 Excel
- Spring MVC - 生成 PDF
- Spring MVC - 使用 log4j
- 春季问答
- 春天 - 问题与解答
Spring MVC - 文件上传示例
以下示例演示如何使用 Spring Web MVC 框架在表单中使用文件上传控件。首先,让我们准备好一个可用的 Eclipse IDE,并按照以下步骤使用 Spring Web 框架开发基于动态表单的 Web 应用程序。
| 步 | 描述 |
|---|---|
| 1 | 按照 Spring MVC - Hello World 章节中的说明,在 com.tutorialspoint 包下创建一个名为 HelloWeb 的项目。 |
| 2 | 在com.tutorialspoint包下创建Java类FileModel、FileUploadController。 |
| 3 | 在jsp子文件夹下创建视图文件fileUpload.jsp、success.jsp。 |
| 4 | 在 WebContent 子文件夹下创建一个文件夹temp 。 |
| 5 | 下载 Apache Commons FileUpload 库commons-fileupload.jar和 Apache Commons IO 库commons-io.jar。将它们放入您的 CLASSPATH 中。 |
| 6 | 最后一步是创建源文件和配置文件的内容并导出应用程序,如下所述。 |
文件模型.java
package com.tutorialspoint;
import org.springframework.web.multipart.MultipartFile;
public class FileModel {
private MultipartFile file;
public MultipartFile getFile() {
return file;
}
public void setFile(MultipartFile file) {
this.file = file;
}
}
文件上传控制器.java
package com.tutorialspoint;
import java.io.File;
import java.io.IOException;
import javax.servlet.ServletContext;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.ModelMap;
import org.springframework.util.FileCopyUtils;
import org.springframework.validation.BindingResult;
import org.springframework.validation.annotation.Validated;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.servlet.ModelAndView;
@Controller
public class FileUploadController {
@Autowired
ServletContext context;
@RequestMapping(value = "/fileUploadPage", method = RequestMethod.GET)
public ModelAndView fileUploadPage() {
FileModel file = new FileModel();
ModelAndView modelAndView = new ModelAndView("fileUpload", "command", file);
return modelAndView;
}
@RequestMapping(value="/fileUploadPage", method = RequestMethod.POST)
public String fileUpload(@Validated FileModel file, BindingResult result, ModelMap model) throws IOException {
if (result.hasErrors()) {
System.out.println("validation errors");
return "fileUploadPage";
} else {
System.out.println("Fetching file");
MultipartFile multipartFile = file.getFile();
String uploadPath = context.getRealPath("") + File.separator + "temp" + File.separator;
//Now do something with file...
FileCopyUtils.copy(file.getFile().getBytes(), new File(uploadPath+file.getFile().getOriginalFilename()));
String fileName = multipartFile.getOriginalFilename();
model.addAttribute("fileName", fileName);
return "success";
}
}
}
HelloWeb-servlet.xml
<beans xmlns = "http://www.springframework.org/schema/beans"
xmlns:context = "http://www.springframework.org/schema/context"
xmlns:xsi = "http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation = "
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd">
<context:component-scan base-package = "com.tutorialspoint" />
<bean class = "org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name = "prefix" value = "/WEB-INF/jsp/" />
<property name = "suffix" value = ".jsp" />
</bean>
<bean id = "multipartResolver"
class = "org.springframework.web.multipart.commons.CommonsMultipartResolver" />
</beans>
在这里,对于第一个服务方法fileUploadPage(),我们在 ModelAndView 对象中传递了一个名为“command”的空白 FileModel 对象,因为如果您使用 <form:form>,Spring 框架需要一个名为“command”的对象JSP 文件中的标记。因此,当调用fileUploadPage()方法时,它返回fileUpload.jsp视图。
第二个服务方法fileUpload()将根据HelloWeb/fileUploadPage URL上的 POST 方法调用。您将根据提交的信息准备要上传的文件。最后,服务方法将返回一个“成功”视图,这将导致呈现 success.jsp。
文件上传.jsp
<%@ page contentType="text/html; charset = UTF-8" %>
<%@ taglib prefix = "form" uri = "http://www.springframework.org/tags/form"%>
<html>
<head>
<title>File Upload Example</title>
</head>
<body>
<form:form method = "POST" modelAttribute = "fileUpload"
enctype = "multipart/form-data">
Please select a file to upload :
<input type = "file" name = "file" />
<input type = "submit" value = "upload" />
</form:form>
</body>
</html>
在这里,我们使用value="fileUpload" 的modelAttribute属性将文件上传控件与服务器模型映射。
成功.jsp
<%@ page contentType = "text/html; charset = UTF-8" %>
<html>
<head>
<title>File Upload Example</title>
</head>
<body>
FileName :
lt;b> ${fileName} </b> - Uploaded Successfully.
</body>
</html>
创建源文件和配置文件后,导出您的应用程序。右键单击您的应用程序,使用Export → WAR File选项并将 HelloWeb.war 文件保存在 Tomcat 的 webapps 文件夹中。
现在,启动 Tomcat 服务器并确保您能够使用标准浏览器从 webapps 文件夹访问其他网页。尝试使用 URL – http://localhost:8080/HelloWeb/fileUploadPage,如果 Spring Web 应用程序一切正常,我们将看到以下屏幕。
提交所需信息后,单击“提交”按钮以提交表格。如果 Spring Web 应用程序一切正常,您应该会看到以下屏幕。
