Package org.jdbi.v3.sqlobject.config
Annotation Type UseSqlParser
Use the specified
SqlParser class to parse SQL for the annotated SQL object class or method. The
given SqlParser class must have a public constructor with any of the following signatures:
- RewriterClass() // no arguments
- RewriterClass(Class)
- RewriterClass(Class,Method)
-
Required Element Summary
Required Elements
-
Element Details
-
value
Class<? extends org.jdbi.v3.core.statement.SqlParser> valueSpecify the SqlParser class to use.- Returns:
- the SqlParser class to use.
-