Я пытаюсь добавить загрузку изображений на мою страницу бесплатного маркера (файл ftl), используя технологию spring и hibernate -
эта ошибка возникала при каждом запуске приложения:
HTTP Status 500 - Сервер
обнаружена внутренняя ошибка (),
помешал ему выполнить это
запрос.
и это код:
1-POM файл:
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
2-app-config.xml:
<bean id="multipartResolver"
class="org.springframework.web.multipart.commons.CommonsMultipartResolver"/>
3-футовый файл:
<input type="file" id="image" name="image" value="">
4-веб-контроллер:
@RequestMapping(method= RequestMethod.POST)
public String post(Model model , HttpServletRequest req , HttpSession session,@RequestParam("image") MultipartFile multipartFile) throws IOException{
// transfer the uploaded image to the place where images exist in project
multipartFile.getBytes();
File destination = new File("/home/user/Pictures/" + multipartFile.getOriginalFilename());
multipartFile.transferTo(destination);
// delete the original uploaded image
destination.delete();
return "redirect:index";
}