parseShardBy(method, paramIndexes, paramTypes);
}
private void configRowMapper(Method method) throws DaoGenerateException {
MapperBy mapperBy = method.getAnnotation(MapperBy.class);
Class<? extends RowMapper<?>> mapperType = null;
if (mapperBy == null) {
throw new DaoGenerateException("Missing @MapperBy on @Query");
} else {
mapperType = mapperBy.value();
}
rowMapper = (RowMapper<?>) ReflectUtils.newInstance(mapperType);
Class<?> returnType = method.getReturnType();
if (isUnique) {