显示我们上传的图片将会是一件nice的事情,不是吗?让我们一起来现在这个功能。我们将要添加模型的参数在PictureUploadController类中。
@ModelAttribute("picturePath") public Resource picturePath() { return anonymousPicture; }
现在我们修改getUploadedPicture的函数。
@RequestMapping(value = "/uploadedPicture") public void getUploadedPicture(HttpServletResponse response, @ ModelAttribute("picturePath") Path picturePath) throws IOException { response.setHeader("Content-Type", URLConnection.guessContentTypeF romName(picturePath.toString())); Files.copy(picturePath, response.getOutputStream()); }
上面的代码中,我们用@ModelAttribute注解,这个是很容易去创建一个模型参数。这个使用与直接在方法体上注解,其实功能是一样的。这里picturePath的参数是不可改变的,即使是在重定向或在其它页面,都是有效的。同时我们默认的图片还是anonymous这张图片,这张图片是在src/mian/resources/images/下。
当文件上传时,我们需要更新对应的值。
@RequestMapping(value = "/upload", method = RequestMethod.POST) public String onUpload(MultipartFile file, RedirectAttributes redirectAttributes, Model model) throws IOException { // throw new IOException("Some Message"); if (file.isEmpty() || !isImage(file)) { redirectAttributes.addFlashAttribute("error", "Incorrect file.Please upload a picture."); return "redirect:/upload"; } Resource picturePath = copyFileToPictures(file); //文件的路径放到session中 model.addAttribute("picturePath", picturePath); return "profile/uploadPage"; }现在我们存在的问题就是,我们有两个方法,onUpload和onUpload,它们将出现在不同的请求中,不幸的是,它们要被重置掉。为了解决这个问题,我们需要将图片的路径放到session中。@Controller @SessionAttributes("picturePath") public class PictureUploadController { }你将会看到运行的结果如下:
源码下载:[email protected]:owenwilliam/masterSpringMVC_4.git