2013-03-22 92 views
1

实体:插入图像中的数据库与BLOB数据类型

@Lob 
@Column(name = "logo") 
private byte[] logo; 

形式:

<h:form enctype="multipart/form-data"> 
    <p:messages showDetail="true"/> 

    <p:fileUpload value="#{testController.file}" 
        update="messages" 
        mode="simple" 
        sizeLimit="1048576" 
        allowTypes="/(\.|\/)(gif|jpe?g|png)$/"/> 

    <p:growl id="messages" showDetail="true"/> 

    <p:commandButton value="Submit" ajax="false" 
        actionListener="#{testController.upload}"/> 
</h:form> 

豆:

private testEntity current; 
private UploadedFile file; 

public UploadedFile getFile() { 
    return file; 
} 

public void upload() { 
    if (file != null) { 
     try { 
      byte[] data = file.getContents(); 
      current.setLogo(data); 

      getFacade().edit(current); 
      JsfUtil.addSuccessMessage("Successful! " + file.getFileName() + " is uploaded."); 
     } catch (Exception e) { 
     } 
    } 
} 

当我尝试上载像80KB的图片文件,它会给我这个例外

Exception [EclipseLink-4002] (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.DatabaseException 
Internal Exception: com.mysql.jdbc.MysqlDataTruncation: Data truncation: Data too long for column 'logo' at row 1 

但如果我只上传10kb的图片,代码就起作用。

使用JSF 2.0,Primefaces 3.5,大多数代码是使用CRUD自动生成的。

+0

你如何声明你的数据库列? – skuntsel 2013-03-22 06:12:05

+0

这是一个JPA问题,而不是JSF。 – 2013-03-22 06:14:00

+0

我宣布它为BLOB – galao 2013-03-22 06:49:30

回答

1

问题是您的数据库列设置为存储的内容比您尝试存储的内容少。这就是截断手段。

您需要将您的数据库列定义更改为LONGBLOB。

+0

,但我只是上传一个84kb大小的图像 – galao 2013-03-22 06:50:24

+0

您可能想要[MySQL存储要求](http://dev.mysql.com/doc/refman/5.5/en/storage-requirements.html #id899830)。 – Ares 2013-03-22 06:54:37