Note that there are some explanatory texts on larger screens.

plurals
  1. POHow do i resolve Hibernate.createBlob() method error at compilation Spring3 Hibernate 4
    primarykey
    data
    text
    <p>I have an issue while compiling my DocumentManager application in eclipse. it is not getting Hibernate.createBlob(file.getInputStream()) method and giving "The method createBlob(InputStream) is undefined for the type Hibernate". I am using Spring 3 and Hibernate 4 with Maven. Please suggest me some solution. Code below... Thanks</p> <pre><code>package com.ecom.data.access.controller; import java.io.IOException; import java.io.OutputStream; import java.sql.Blob; import java.sql.SQLException; import java.util.Map; import javax.servlet.http.HttpServletResponse; import com.ecom.data.access.dao.DocumentDAO; import com.ecom.data.access.model.Document; import org.apache.commons.io.IOUtils; import org.hibernate.Hibernate; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Controller; import org.springframework.web.bind.annotation.ModelAttribute; import org.springframework.web.bind.annotation.PathVariable; import org.springframework.web.bind.annotation.RequestMapping; import org.springframework.web.bind.annotation.RequestMethod; import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.multipart.MultipartFile; @Controller public class DocumentController { @Autowired private DocumentDAO documentDao; @RequestMapping("/index") public String index(Map&lt;String, Object&gt; map) { try { map.put("document", new Document()); map.put("documentList", documentDao.list()); }catch(Exception e) { e.printStackTrace(); } return "documents"; } @RequestMapping(value = "/save", method = RequestMethod.POST) public String save( @ModelAttribute("document") Document document, @RequestParam("file") MultipartFile file) { System.out.println("Name:" + document.getName()); System.out.println("Desc:" + document.getDescription()); System.out.println("File:" + file.getName()); System.out.println("ContentType:" + file.getContentType()); try { Blob blob = Hibernate.createBlob(file.getInputStream()); document.setFilename(file.getOriginalFilename()); document.setContent(blob); document.setContentType(file.getContentType()); } catch (IOException e) { e.printStackTrace(); } try { documentDao.save(document); } catch(Exception e) { e.printStackTrace(); } return "redirect:/index.html"; } @RequestMapping("/download/{documentId}") public String download(@PathVariable("documentId") Integer documentId, HttpServletResponse response) { Document doc = documentDao.get(documentId); try { response.setHeader("Content-Disposition", "inline;filename=\"" +doc.getFilename()+ "\""); OutputStream out = response.getOutputStream(); response.setContentType(doc.getContentType()); IOUtils.copy(doc.getContent().getBinaryStream(), out); out.flush(); out.close(); } catch (IOException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } return null; } @RequestMapping("/remove/{documentId}") public String remove(@PathVariable("documentId") Integer documentId) { documentDao.remove(documentId); return "redirect:/index.html"; } } </code></pre>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload