Example usage for org.springframework.jdbc.core RowMapper interface-usage

List of usage examples for org.springframework.jdbc.core RowMapper interface-usage

Introduction

In this page you can find the example usage for org.springframework.jdbc.core RowMapper interface-usage.

Usage

From source file uk.ac.kcl.rowmappers.DocumentRowMapper.java

@Component
public class DocumentRowMapper implements RowMapper<Document> {
    private static final Logger LOG = LoggerFactory.getLogger(DocumentRowMapper.class);
    @Autowired
    Environment env;

From source file dk.nsi.haiba.lprimporter.dao.impl.LPRContactRowMapper.java

class LPRContactRowMapper implements RowMapper<Administration> {

    private static Log log = new Log(Logger.getLogger(LPRContactRowMapper.class));

    private static final String DIAGNOSIS = "DIA";
    private static final String PROCEDURE = "PRO";

From source file net.paoding.rose.jade.core.BeanPropertyRowMapper.java

/**
 * {@link RowMapper} implementation that converts a row into a new instance
 * of the specified mapped target class. The mapped target class must be a
 * top-level class and it must have a default or no-arg constructor.
 * 
 * <p>

From source file com.gzj.tulip.jade.rowmapper.BeanPropertyRowMapper.java

/**
 * {@link RowMapper} implementation that converts a row into a new instance
 * of the specified mapped target class. The mapped target class must be a
 * top-level class and it must have a default or no-arg constructor.
 * 
 * <p>

From source file net.paoding.rose.jade.rowmapper.BeanPropertyRowMapper.java

/**
 * {@link RowMapper} implementation that converts a row into a new instance
 * of the specified mapped target class. The mapped target class must be a
 * top-level class and it must have a default or no-arg constructor.
 * 
 * <p>

From source file com.laxser.blitz.lama.core.BeanPropertyRowMapper.java

/**
 * {@link RowMapper} implementation that converts a row into a new instance
 * of the specified mapped target class. The mapped target class must be a
 * top-level class and it must have a default or no-arg constructor.
 * 
 * <p>

From source file tianci.pinao.dts.tasks.dao.impl.ConfigDaoImpl.java

class LicenseRowMapper implements RowMapper<License> {

    @Override
    public License mapRow(ResultSet rs, int index) throws SQLException {
        License license = new License();

From source file com.dexcoder.dal.spring.mapper.JdbcRowMapper.java

/**
 * ????spring{@link BeanPropertyRowMapper}.
 * ????initialize,BeanPropertyRowMapperprotected??,??private
 * ???.
 *
 *

From source file cn.clickvalue.cv2.model.rowmapper.BeanPropertyRowMapper.java

/**
 * {@link RowMapper} implementation that converts a row into a new instance
 * of the specified mapped target class. The mapped target class must be a
 * top-level class and it must have a default or no-arg constructor.
 *
 * <p>Column values are mapped based on matching the column name as obtained from result set

From source file io.github.huherto.springyRecords.RecordMapper.java

/**
 * Implementation adapted from BeanPropertyRowMapper
 */
public class RecordMapper<T> implements RowMapper<T> {

    /** Logger available to subclasses */