up vote 2 down vote favorite
share [g+] share [fb]

How is a blob column annotated in Hibernate? So far I have a class that has:

@Column( name = "FILEIMAGE" )
private byte[ ] fileimage ;
//
public byte[ ] getFileimage ( ) { return this.fileimage ; }
public void setFilename ( String filename ) { this.filename = filename ; }
link|improve this question
feedback

1 Answer

up vote 3 down vote accepted

@Lob should do the trick for blob and clob (use String as type)

@Column( name = "FILEIMAGE" )
@Lob(type = LobType.BLOB)
private byte[] fileimage;
link|improve this answer
4  
dependent on the hibernate version, the Lob annotation could have no type parameter. quote from here: @Lob no longer has attributes, the lob type (CLOB, BLOB) is guessed. If the underlying type is a String or an array of character then CLOB are used. Othersise BLOB are used. – Fortega Jun 2 '09 at 14:04
thanks guys for your quick answers. is the sequence important? @Column( name = "FILEIMAGE" , length = 1048576 ) @Lob private byte[ ] fileimage ; – quinn Jun 2 '09 at 14:24
feedback

Your Answer

 
or
required, but never shown