public class TodoMapper implements ResultSetMapper<Todo> {
@Override
public Todo map(int i, ResultSet resultSet, StatementContext statementContext)
throws SQLException {
Json json = new Json();
try {
return json.readValue(resultSet.getString("json"), Todo.class);
} catch (IOException e) {
throw propagate(e);
}
}