摘要: 通过spring的jdbctemplate返回的list其实封装的是需要通过如下方法得到里面的内容的 public void getAllUsers() { List allUsers = new ArrayList(); LOGGER.debug("Get All User Information!"); allUsers = jdbcTemplate.queryForList(queryGetAllUsers); for (int i = 0; i < allUsers.size(); i++) { Sys... 阅读全文
posted @ 2013-06-23 17:14 tf_swufe 阅读(7900) 评论(0) 推荐(0)