实体:
@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
但如果我上传一个&lt; 10kb图片,代码可以工作。
使用JSF 2.0,Primefaces 3.5,大多数代码都是使用CRUD自动生成的。
答案 0 :(得分:1)
问题是您的数据库列设置为存储的内存小于您尝试存储的内容。这就是截断的意思。
您需要将数据库列定义更改为LONGBLOB。