spring mvc笔记之文件上传和拦截器 文件上传--1.需要在配置文件加入 --2.在控制其中使用 @RequestParam("file") MultipartFile file 作为参数使用file.transferTo(new File("path")); 即可--3.必须在表单中加上
文件上传 -->1.需要在配置文件加入-->2.在控制其中使用 @RequestParam("file") MultipartFile file 作为参数 使用file.transferTo(new File("path")); 即可 -->3.必须在表单中加上