SpringMVC(四)上传文件、json数据交互

上传文件

* tomcat中配置虚拟目录

修改server.xml,在里面添加

这样,就可以通过访问http://localhost:8080/pic访问到d盘下的文件    

eclipse中设置

SpringMVC(四)上传文件、json数据交互_第1张图片

依赖jar


SpringMVC.xml中配置文件上传解析器



	
	

jsp页面修改


enctype 必须改为 multipart/form-data

controller方法

@RequestMapping("/fileUpload.action")
	public String doFileUpload(@RequestParam(required = false) MultipartFile file,
			HttpServletRequest request
			) throws IllegalStateException, IOException{
		if(file==null){
			return "itemList";
		}
		String orginFileName = file.getOriginalFilename();
		String fileName = UUID.randomUUID()+""+orginFileName.substring(orginFileName.lastIndexOf("."));
		String path = request.getServletContext().getRealPath(File.separatorChar+"WEB-INF"+File.separatorChar+"upload");
		File file2 = new File(path, fileName);
		if(!file2.getParentFile().exists()){
			file2.getParentFile().mkdirs();
		}
		file.transferTo(file2);
		return "forward:/itemList.action";
	}

文件路径访问不到的异常

因为父目录不存在,加上file.getParentFile().mkdirs()创建父目录解决

存放文件的路径说明

1. 直接在webRoot下创建upload文件夹,上传文件放在这里,在浏览器上能够直接访问到,因此这里存放是安全的

http://localhost:8081/goldSpringDemo/upload/0ea8aa64-76c6-49bf-9ecd-3a56c9fa87ed.xls

2. 在webRoot下的WEB-INF下创建upload文件夹,将上传文件放在这里,浏览器无法直接访问到,这里比较安全

,本例中用的就是这种

多文件上传

修改jsp页面

修改controller方法形参,遍历后按照单个文件的处理流程处理就是

@RequestMapping("/fileUploads.action")
	public String doFileUploads(@RequestParam(required = false) List files,
			HttpServletRequest request
			) throws IllegalStateException, IOException{
		if(files==null){
			return "itemList";
		}
		for(int i = 0;i

Json数据交互

@RequestBody注解将请求的json数据转为java对象进行绑定

@ResponseBody将controller方法返回的java对象转为json响应客户端。

jar支持


JSON转换器

如果xml中使用注解驱动,不需要配置json转换器,不适用注解驱动就需要配置


	
		
		
		
		
		
	

开始测试下:

jsp页面:


	
编号
名称
时间
备注

controller方法

@RequestMapping("/json.action")
	public @ResponseBody Item dojsonSupport(QueryVo qv){
		return qv.getItem();
	}

你可能感兴趣的:(Json数据交互,文件上传,SpringMVC)