Package org.jdbi.v3.freemarker
Annotation Type 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);
     }