Annotation Interface ClobFactory


@Target(METHOD) @Retention(RUNTIME) public @interface ClobFactory
Indicates a method that creates a Clob instance for handling large text data in the database.

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

 @Dao
 public interface EmployeeDao {

     @ClobFactory
     Clob createClob();
 }
 
The method may throw following exceptions:
See Also: