jdbcTemplate如何返回List<String>
解决方法:
List<String> data = jdbcTemplate.query("select name from tb_user", new RowMapper<String>(){
public String mapRow(ResultSet rs, int rowNum) throws SQLException {
return rs.getString(1);
}
},null);
有建议,请留言!
*您的姓名:
*所在城市:
*您的联系电话:
*您的QQ:
咨询问题: