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 com.sinosoft.one.data.jade.rowmapper.BeanPropertyRowMapper.java

/**
 * {@link org.springframework.jdbc.core.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.mx.core.dao.BeanPropRowMap.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 com.evilisn.DAO.CertMapper.java

/**
 * Created by evilisn_jiang(evilisn_jiang@trendmicro.com.cn)) on 2016/4/25.
 */
public class CertMapper implements RowMapper {
    public static TreeMap<URI, X509Certificate> cached_issuers = new TreeMap<>();

From source file com.duowan.common.spring.jdbc.BeanPropertyRowMapper.java

/**
 * <pre>
 * : 
 *    1.spring jdbc ?????, : spring pidPath1 => pid_path_1, pidPath1 => pid_path1,: underscoreName()
 *  2.java?byte,short,int,long,float,double null?0,?NullPointerException,: initBeanWrapper()
 *  

From source file org.springframework.jdbc.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>Column values are mapped based on matching the column name as obtained from result set

From source file com.p5solutions.core.jpa.orm.rowbinder.EntityRowBinder.java

/**
 * The Class EntityRowBinder.
 * 
 * @param <T>
 *          the generic type
 */

From source file edu.hm.muse.controller.UserMapper.java

public class UserMapper implements RowMapper<User> {

    @Override
    public User mapRow(ResultSet resultSet, int i) throws SQLException {
        User u = new User();
        u.setId(resultSet.getInt("ID"));

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

class ConfigRowMapper implements RowMapper<Config> {

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

From source file zerogame.info.javapay.dao.UserDao.java

class UserRowMapper implements RowMapper<Player> {

    @Override
    public Player mapRow(ResultSet rs, int i) throws SQLException {
        Player user = new Player();
        user.setUin(rs.getLong("uin"));

From source file com.insframework.common.spring.jdbc.mapper.BeanPropertyRowMapper.java

/**
 * ??Object
 * spring?
 * @author guom
 *
 */