@Retention(RetentionPolicy.RUNTIME) @Target(ElementType.FIELD) @GroovyASTTransformationClass("org.grails.databinding.compiler.BindingFormatASTTransformation") public @interface BindingFormat
Apply BindingFormat to a field to provide a format to be used when binding a String to this field.
class DateContainer {
@BindingFormat('MMddyyyy')
Date someDate
}