Java tutorial
/** Copyright 2012 Otavio Rodolfo Piske Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ package net.orpiske.ssps.common.dependencies.cache; import net.orpiske.ssps.common.repository.PackageInfo; import net.orpiske.ssps.common.utils.NameConverter; import net.orpiske.ssps.common.version.Version; import org.apache.commons.beanutils.PropertyUtils; import org.apache.commons.dbutils.handlers.AbstractListHandler; import java.sql.ResultSet; import java.sql.ResultSetMetaData; import java.sql.SQLException; /** * Handles the result of a query * * @author Otavio R. Piske <angusyoung@gmail.com> */ class MultiRsHandler extends AbstractListHandler<DependencyCacheDto> { /** * Constructor */ public MultiRsHandler() { } /* (non-Javadoc) * @see org.apache.commons.dbutils.handlers.AbstractListHandler#handleRow(java.sql.ResultSet) */ @Override protected DependencyCacheDto handleRow(ResultSet rs) throws SQLException { DependencyCacheDto dto = new DependencyCacheDto(); ResultSetMetaData meta = rs.getMetaData(); for (int i = 1; i <= meta.getColumnCount(); i++) { Object value = rs.getObject(i); String name = meta.getColumnName(i); try { /* * We convert the column name to a more appropriate and java like name * because some columns are usually named as some_thing whereas Java * properties are named someThing. This call does this conversion. */ String javaProperty = NameConverter.sqlToProperty(name); if (javaProperty.equals("version")) { Version version = Version.toVersion((String) value); PropertyUtils.setSimpleProperty(dto, javaProperty, version); } else { PropertyUtils.setSimpleProperty(dto, javaProperty, value); } } catch (Exception e) { throw new SQLException("Unable to set property " + name + " for bean" + dto.getClass(), e); } } return dto; } }