@RequestMapping(value = "/{spotId}/upload/{albumId}", method = RequestMethod.GET)
public ModelAndView btachUpload(@PathVariable("spotId") Long spotId,
@PathVariable("albumId") Long albumId) {
User user = (User) WebHelper.getSessionAttribute(null, Constant.SESSION_USER);
if (user == null) {
throw new NotLoginException("上传照片必须登录");
}
Album album = albumService.getAlbumForChange(albumId, spotId);
ModelAndView mav = new ModelAndView(ViewPaths.SPOT_UPLOADPHOTO);
mav.addObject("album", album);
// WebHelper.saveToken(request);