Annotation Interface BlobFactory


@Target(METHOD) @Retention(RUNTIME) public @interface BlobFactory
Indicates a method that creates a Blob instance for handling large binary data in the database.

The annotated method must be a member of a Dao annotated interface.

 @Dao
 public interface EmployeeDao {

     @BlobFactory
     Blob createBlob();
 }
 
The method may throw following exceptions:
See Also: