Skip to content

Instantly share code, notes, and snippets.

@aeells
Last active December 11, 2015 11:39
Show Gist options
  • Save aeells/4595649 to your computer and use it in GitHub Desktop.
Save aeells/4595649 to your computer and use it in GitHub Desktop.
Basic JDBI data access.
@RegisterMapper(MyObjectResultSetMapper.class) public interface MyDao
{
// get objects
@SqlQuery("SELECT * FROM list WHERE ... LIMIT 200")
List<MyObject> get();
void close();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment