Spring MVC 文件批量上传实现详解

需积分: 9 23 下载量 92 浏览量 更新于2024-09-09 收藏 1KB TXT 举报
"这篇内容是关于使用Spring MVC框架进行图片批量上传的实现方法。作者整理了相关代码并分享出来,主要涉及到控制器类的编写、文件处理以及与数据库的交互。" 在Spring MVC中,实现图片批量上传需要涉及多个关键点。首先,我们需要创建一个控制器(Controller)来处理HTTP请求。在给定的代码片段中,`CreatShopController` 类是这样的控制器,它使用了`@Controller` 和 `@RequestMapping` 注解来定义其作用域和处理的URL路径。 `@Controller` 注解表明这个类是一个Spring MVC中的控制器,负责处理HTTP请求。`@RequestMapping("/shop")` 表示该控制器将响应所有以 "/shop" 开头的URL请求。此外,`@SessionAttributes("shopuser")` 注解指示Spring MVC将`ShopUser`对象存储在HttpSession中,以便在请求之间保持状态。 接下来,代码中使用了`@Resource` 注解注入了一个名为`ShopUserMapperDao`的数据访问对象(DAO)。DAO层是用来和数据库进行交互的,这里可能是用于存储用户信息或与上传图片相关的数据。 在`CreatShopController` 类中,`toCreatShop` 方法返回一个视图名称("shopuser/shopuserregist"),这通常对应于一个HTML页面,用户可以在该页面上输入信息并选择要上传的图片。 然后是`creatShop` 方法,它接收一个`HttpServletRequest` 对象,这通常用于获取HTTP请求的详细信息,包括上传的文件。`ShopUser`对象用于存储用户信息,包括店铺名称、图片地址(例如:"dianzhu.png")以及一些其他属性。在这里,作者设置了一些默认值,但实际的图片上传逻辑并未展示。 在实际的图片批量上传过程中,你需要使用`MultipartFile` 类来处理上传的文件。在处理请求时,通常会检查文件类型、大小等,然后将文件保存到服务器的指定目录,并可能将文件路径保存到数据库中,以便后续访问。 因此,要实现图片批量上传,你需要: 1. 在前端(HTML页面)添加表单,允许用户选择多个文件。 2. 使用`MultipartFile` 接收上传的文件。 3. 验证文件类型和大小,确保符合服务器的接受标准。 4. 将文件保存到服务器的文件系统或云存储服务。 5. 更新数据库记录,保存每个图片的存储路径或URL。 6. 返回成功或失败的响应给客户端。 以上就是Spring MVC环境下图片批量上传的基本流程,具体实现还需要结合实际项目需求和配置进行调整。
2018-04-19 上传
java 基于springMVC多图片上传,MySQL源码 @Controller @RequestMapping("/upload") public class UploadFileController { @Autowired private UploadFileService uploadFileService; @RequestMapping("/upfile") public String upload(HttpServletRequest request, @RequestParam("designation") String designation, @RequestParam("remark") String remark, //@RequestParam("file") String file, Model model)throws Exception { String str = designation; String[] st=str.split(","); //以逗号为分隔符进行截取 String re = remark; String[] stre = re.split(","); UploadFile uploadFile = new UploadFile(); //转成文件上传请求 MultipartHttpServletRequest murequest = (MultipartHttpServletRequest)request; //在文件上传请求中获取文件,根据file的name List files = murequest.getFiles("image"); if( files !=null && files.size()>0) { for(int i=0; i<files.size(); i++) { String uuid = UUID.randomUUID().toString().replace("-", "").toUpperCase()+"_"; String filename = files.get(i).getOriginalFilename(); //System.out.println("filename="+filename); int hCode =filename.hashCode(); String hex = Integer.toHexString(hCode); String mkdir = hex.charAt(0)+"\\"+hex.charAt(1)+"\\"; String path = request.getServletContext().getRealPath("/images/")+mkdir; //System.out.println("path="+path); File filepath = new File(path,filename); if(!filepath.getParentFile().exists()) { filepath.getParentFile().mkdirs(); } //将上传文件保存到目标文件中 files.get(i).transferTo(new File(path+File.separator+filename)); //获取数据库存储路径 String root = request.getContextPath(); String mkdirsql = hex.charAt(0)+"/"+hex.charAt(1)+"/"; String sqlpath = root+"/images/"+mkdirsql+filename; String imgpath = sqlpath; //图片保存到数据库的路径 uploadFile.setDesignation(st[i]); uploadFile.setRemark(stre[i]); uploadFile.setFile(filename); uploadFile.setImgpath(sqlpath); uploadFileService.addUploadFile(uploadFile); } return "success"; } return "404"; }