@Target(value=METHOD)
@Retention(value=RUNTIME)
public @interface ClobFactory
Clob instance.
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:
JdbcException if a JDBC related error occurs
Connection.createClob()