SpringMVC实现本服务器文件上传和跨服务器文件上传

项目结构:
SpringMVC实现本服务器文件上传和跨服务器文件上传_第1张图片

1. 创建maven工程,导入依赖

pom.xml
注意:我们在使用maven创建web项目时,千万不要忘记将打包方式改成war

      
    war
   
     
        UTF-8
        1.8
        1.8
        5.0.2.RELEASE
    

    
        
            org.springframework
            spring-context
            ${spring.version}
        

        
            org.springframework
            spring-web
            ${spring.version}
        

        
            org.springframework
            spring-webmvc
            ${spring.version}
        

        
            javax.servlet
            servlet-api
            2.5
            provided
        

        
            javax.servlet.jsp
            jsp-api
            2.0
            provided
        

        
            commons-fileupload
            commons-fileupload
            1.3.1
        
        
            commons-io
            commons-io
            2.4
        

        
            com.sun.jersey
            jersey-core
            1.18.1
        
        
            com.sun.jersey
            jersey-client
            1.18.1
        

    

    
        
            
                org.apache.maven.plugins
                maven-compiler-plugin
                2.3.2
                
                    1.8
                    1.8
                
            
        
    
2.编写前端测试页面

index.jsp:
注意: 1. form 表单的 enctype 取值必须是: multipart/form-data (默认值是:application/x-www-form-urlencoded),enctype:是表单请求正文的类型
3. method 属性取值必须是 Post,否则不支持

<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    测试文件上传




传统文件上传

选择文件:

Springmvc文件上传

选择文件:

跨服务器文件上传

选择文件:

successs.jsp:

<%@ page contentType="text/html;charset=UTF-8" language="java" %>


    Title


    

上传文件成功

3.编写springmvc.xml配置文件
注意: 配置文件解析器对象,要求id名称必须是multipartResolver




    
    
    

    
    
        
        
        
        
    
    
    
    
    
    
    
        
        
    
    


    
    
    
    

    
    

4.编写Controller页面

http://localhost:8080 应用服务器
http://localhost:9090 图片服务器,存储图片
**注意:**MultipartFile就是对文件的封装,服务器的端口号不能一样

package cn.xiaozhang.controller;

import com.sun.jersey.api.client.Client;
import com.sun.jersey.api.client.WebResource;
import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.disk.DiskFileItemFactory;
import org.apache.commons.fileupload.servlet.ServletFileUpload;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.multipart.MultipartFile;

import javax.servlet.http.HttpServletRequest;
import java.io.File;
import java.io.IOException;
import java.util.List;
import java.util.UUID;

/**
 * 感谢詹姆斯.高斯林!
 * 有志者,事竟成!
 * 少壮不努力,老大徒伤悲!
 */
@Controller
@RequestMapping("/user")
public class UserController {

    /**
     * 跨服务器文件上传
     * http://localhost:8080   应用服务器
     * http://localhost:9090  图片服务器,存储图片
     */
    @RequestMapping("/fileupload3")
    public String fileuoload3(MultipartFile upload) throws Exception {
        System.out.println("跨服务器文件上传...");

        // 定义上传文件服务器路径
        String path = "http://localhost:9090/uploads/";

        // 说明上传文件项
        // 获取上传文件的名称
        String filename = upload.getOriginalFilename();
        // 把文件的名称设置唯一值,uuid
        String uuid = UUID.randomUUID().toString().replace("-", "");
        filename = uuid+"_"+filename;

        // 创建客户端的对象
        Client client = Client.create();

        // 和图片服务器进行连接
        WebResource webResource = client.resource(path + filename);

        // 上传文件
        webResource.put(upload.getBytes());

        return "success";
    }


    /**
     * SpringMVC实现文件上传
     *      MultipartFile就是对文件的封装。
     */
    @RequestMapping("/fileupload2")
    public String fileupload2(HttpServletRequest request, MultipartFile upload) throws IOException {
        System.out.println("springmvc文件上传...");

        // 使用fileupload组件完成文件上传
        // 1. 指定文件上传保存的位置
        String path = request.getSession().getServletContext().getRealPath("/uploads/");

        // 判断该路径是否存在
        File file = new File(path);
        if (!file.exists() || !file.isDirectory()){
            file.mkdirs();
        }
        // 打印一下文件保存的路径
        System.out.println("path:"+path);

        // 说明上传文件项
        // 2. 获取上传文件的名称
        String filename = upload.getOriginalFilename();
        // 把文件的名称设置唯一值,uuid
        String uuid = UUID.randomUUID().toString().replace("-", "");
        filename = uuid+"_"+filename;

        // 3.上传文件
        upload.transferTo(new File(path,filename));
        return "success";
    }


    /**
     * 传统方式上传
     */
    @RequestMapping("/fileupload1")
    public String fileupload1(HttpServletRequest request) throws Exception {
        System.out.println("文件上传.....");

        // 使用fileupload组件完成文件上传
        // 1. 指定上传的位置
        String path = request.getSession().getServletContext().getRealPath("/uploads/");
        System.out.println(path);

        // 判断该位置是否存在
        File file = new File("path:"+path);
        if (! file.exists()){
            file.mkdirs();
        }

        // 2. 解析request对象,获取上传文件项
        DiskFileItemFactory factory = new DiskFileItemFactory();
        ServletFileUpload upload = new ServletFileUpload(factory);
        // 解析request
        List items = upload.parseRequest(request);
        System.out.println(items);// length = 0
        // 遍历
        for (FileItem item : items) {

            // 进行判断,当前item对象是否是上传文件项
            if(item.isFormField()){
                // 说明普通表单
                System.out.println("普通表单...");
            }else {

                // 3. 说明上传文件项
                // 获取上传文件的名称
                String filename = item.getName();
                // 把文件的名称设置唯一值,uuid
                String uuid = UUID.randomUUID().toString().replace("-", "");
                filename = uuid+"_"+filename;
                // 完成上传
                item.write(new File(path,filename));
                // 删除临时文件
            }
        }

        // 跳转到上传成功页面
        return "success";
    }
}
5.配置web.xml



    
    
        dispatcherServlet
        org.springframework.web.servlet.DispatcherServlet
        
            contextConfigLocation
            classpath:springmvc.xml
        
        
        1
    
    
        dispatcherServlet
        /
    
    

    
    
        characterEncodingFilter
        org.springframework.web.filter.CharacterEncodingFilter
        
            encoding
            UTF-8
        
        
            forceEncoding
            true
        
    
    
        characterEncodingFilter
        /*
    
    

    
    
        index.jsp
    

启动服务器,进行测试,上传成功!
SpringMVC实现本服务器文件上传和跨服务器文件上传_第2张图片
传统方式上传注意事项:
在测试传统方式上传时,要将SpringMVC配置文件中的

    
        
        
    

注释掉,否则会出现无法成功存储图片的情况,这是因为出现了冲突,无法正确上传的文件造成的。

跨服务器文件上传的注意事项:
存储服务器要是web项目,且发布时要发布带exploded的。
SpringMVC实现本服务器文件上传和跨服务器文件上传_第3张图片
SpringMVC实现本服务器文件上传和跨服务器文件上传_第4张图片
Good Night !

你可能感兴趣的:(Java基础,spring)