Annotation Interface MappedJdbcTypes


@Documented @Retention(RUNTIME) @Target(TYPE) public @interface MappedJdbcTypes
The annotation that specify jdbc types to map TypeHandler.

How to use:

 @MappedJdbcTypes({ JdbcType.CHAR, JdbcType.VARCHAR })
 public class StringTrimmingTypeHandler implements TypeHandler<String> {
   // ...
 }
 
Author:
Eduardo Macarron