Annotation Type UseFreemarkerSqlLocator


@Retention(RUNTIME) @Target({TYPE,METHOD}) public @interface UseFreemarkerSqlLocator
Configures SQL Object to locate SQL using the FreemarkerSqlLocator class.
     @UseFreemarkerSqlLocator
     interface Viccini {
         @SqlUpdate
         void doTheThing(long id);

         @SqlUpdate("thatOtherThing")
         void doTheThing(String name);
     }