search

Home  >  Q&A  >  body text

How does jdbc return automatically defined beans

return getJdbcTemplate().query(sql.toString(),new Object[]{beginTime},
                ParameterizedBeanPropertyRowMapper.newInstance(Exp.class));
一开始在struts2上用这种方法,好使的,但把项目移到spring+maven框架下可能是用的最新版本的jar包,ParameterizedBeanPropertyRowMapper这个方法会被画横线,说代码过时,有没有其他可以代替的方法?不用RowMapper那种一个个set进去
某草草某草草2743 days ago570

reply all(1)I'll reply

  • 高洛峰

    高洛峰2017-05-27 17:40:59

    getJdbcTemplate().query(sql.toString(), new BeanPropertyRowMapper<>(Exp.class), beginTime);

    reply
    0
  • Cancelreply